Reputation: 9581
I wan't to pull out all instances of "brand":"SOMETHING HERE" in my document where SOMETHING HERE could be any number of things but its always in the format of the above... how do I do this with NP++
Upvotes: 2
Views: 9134
Reputation: 8044
Ctrl + F, check 'Regular expression', select 'Replace' tab. In 'find what', type
"brand":"[\S]+"
Leave 'Replace with' empty to remove all instances of "brand":"[one or more non white-space characters]"
Upvotes: 1