How can I trim all paragraph only leave a few line

How can I trim all paragraph only leave a few line

1
NewbieNewbie
1

    Jan 23, 2005#1

    How can I trim all paragraph only leave a few line. For example:

    Code: Select all

    	margin-bottom:.0001pt;
    	mso-pagination:widow-orphan;
    	font-size:12.0pt;
    	font-family:"Times New Roman";
    	mso-fareast-font-family:"Times New Roman";}
    	span.MsoHyperlink
    	{color:blue;
    	text-decoration:underline;
    	text-underline:single;}
                    span.MsoHyperlinkFollowed
    	{color:purple;
                    margin-bottom:.0001pt;
    	mso-pagination:widow-orphan;
    	font-size:12.0pt;
    	font-family:"Times New Roman";
    	mso-fareast-font-family:"Times New Roman";}
    	span.MsoHyperlink
    
                    xxxxxxx
    
                    aaaaaaa
                    bbbbbbbb
    
                     
    
    	{color:blue;
    	text-decoration:underline;
    	text-underline:single;}
                    span.MsoHyperlinkFollowed
    	{color:purple;
    I want result like this

    Code: Select all

                    mso-pagination:widow-orphan;
                    mso-fareast-font-family:"Times New Roman";}
                    aaaaaaa
                    bbbbbbbb
    I want built a loop to search a long paragraph

    Thanks

    6,686585
    Grand MasterGrand Master
    6,686585

      Jun 25, 2006#2

      Following macro will do this reformat. The cursor must be placed at start of the paragraph. This macro was created by simply recording a manual reformat.

      InsertMode
      ColumnModeOff
      HexOff
      UnixReOff
      Clipboard 9
      StartSelect
      Find Select "mso-pagination:widow-orphan;"
      Key HOME
      EndSelect
      Key DEL
      Key DOWN ARROW
      StartSelect
      Find Select "mso-fareast-font-family:"Times New Roman";}"
      Key HOME
      EndSelect
      Key DEL
      Key DOWN ARROW
      StartSelect
      Find Select "aaaaaaa"
      Key HOME
      EndSelect
      Key DEL
      Find "bbbbbbbb"
      StartSelect
      EndSelect
      Key Ctrl+LEFT ARROW
      StartSelect
      Key HOME
      Copy
      EndSelect
      Key UP ARROW
      Key UP ARROW
      Key UP ARROW
      StartSelect
      Key DOWN ARROW
      Key DOWN ARROW
      Key DOWN ARROW
      Key DOWN ARROW
      Find RegExp "%[ ^t]+"
      Replace All SelectText "^c"
      EndSelect
      Key DOWN ARROW
      StartSelect
      Find Select "color:purple;"
      EndSelect
      Key DEL
      ClearClipboard
      Clipboard 0
      Best regards from an UC/UE/UES for Windows user from Austria