To remove text between AAA...BBB, use EasyPattern:
Code: Select all
AAA[ 1+ chars ]BBB
If you want to keep the AAA and BBB and insert new text, use EasyPattern:
Code: Select all
[ capture( 'AAA' ), capture( 1+ chars ), capture( 'BBB' ) ]
Code: Select all
$1$new text$3$
Code: Select all
[ capture( 'AAA' ), capture( 1+ chars ), capture( 'BBB' ) ]
Code: Select all
newAAA$2$newBBB
If you have ideas for more 'How To's' please drop a note in the forums or send us an email.