acantha leaf, ambrominas leaf, angelica root, barley grass, etc.
If anyone can give me a pointer that will just kill all the data from "named" to ">" it will be a great help. I've been fighting with this for hours and am about ready to toss my laptop across the room.
You need to perform the following search and replace:
Find what:
^.*>
Replace with:
Nothing - leave it blank
With regular expression enabled and POSIX regular expression syntax enabled in the general preferences.
This searches for repetition '*' of any character '.' following a new line '^' up to a '>' character and deletes them. You could omit the ^ character but I would tend to leave it in as it limits the number of matches to one on each line.
Hope this helps.
Running TextPad 5.4 on Windows XP SP3 and on OS X 10.7 under VMWare or Crossover.
Difference here: not using Posix, and running in the lines.
I can do this in two steps:
This is using Perl regular expressions:
First:
Search:
named=.*'>
Replace:
[empty]
Then:
Search:
[space]\R
Replace: X literal
,[space]
----------------------
PS: When you are battling your way through the learning curve it can help to set up a test file in TextPad, along with a Clip library of regular expression bits and scraps.
Then in WE: >File, Load Test File
and: Edit: Test Find and Test Replace