in reply to Re: Regex match last
in thread Regex match last
This does not match the required text in the following code :
<w:body><w:p w:rsidR="00A654E7" w:rsidRPr="00AD741F" w:rsidRDefault="00A654E7" w:rsidP="00A654E7"><w:pPr><w:pStyle w:val="Standard"/><w:rPr><w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:cstheme="minorHAnsi"/><w:sz w:val="20"/><w:szCs w:val="20"/></w:rPr></w:pPr><w:r w:rsidRPr="00AD741F"/></w:body>
I want only these to be matched :
1<w:pStyle w:val="Standard"/> 2<w:rPr><w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" +w:cstheme="minorHAnsi"/> 3<w:sz w:val="20"/> 4<w:r w:rsidRPr="00AD741F"/>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Regex match last
by BrowserUk (Patriarch) on Aug 20, 2012 at 11:28 UTC | |
|
Re^3: Regex match last
by MidLifeXis (Monsignor) on Aug 20, 2012 at 12:30 UTC | |
|
Re^3: Regex match last
by Neighbour (Friar) on Aug 20, 2012 at 11:32 UTC | |
|
Re^3: Regex match last
by Anonymous Monk on Aug 20, 2012 at 10:55 UTC |