I have a lot of code lines with similar structure: <tag>(.... ,"{keyword}", .....)
How to extract {keyword} only?
How to remove (replace with nothing) everything from the beginning of the line until ," and from ", to the end of the line?
Remove all from the beginning
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
- DataMystic Support
- Site Admin
- Posts: 2227
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
Re: Remove all from the beginning
1. Use a find/replace, with Extract Option checked, using an EasyPattern of
<tag>(.... ,"[ capture(1+chars) ]", .....)
Replace with $1.
2. Use a find/replace, with an EasyPattern of
[lineStart, 0+ not cr or lf ],"[ capture(1+chars) ]",[ longest 0+ not cr or lf, lineEnd ]
Replace with $1.
<tag>(.... ,"[ capture(1+chars) ]", .....)
Replace with $1.
2. Use a find/replace, with an EasyPattern of
[lineStart, 0+ not cr or lf ],"[ capture(1+chars) ]",[ longest 0+ not cr or lf, lineEnd ]
Replace with $1.