Page 1 of 1

Extract text

Posted: Wed Feb 01, 2012 11:22 am
by Animention
Hi,

I have the following in my file: text="abc"........
text="blabla".....

And I'd like to extract the content of the commas, for example, in the first i'd like to get abc and on the second blabla and so on for many more lines. Is it possible? ;)

Re: Extract text

Posted: Wed Feb 01, 2012 10:22 pm
by DV
You could try (in regular expression mode)

".*" and then extract. You'd have to find-replace the quotes afterwards though.

Re: Extract text

Posted: Thu Feb 02, 2012 4:32 pm
by Animention
Right I got it, thanks for the help. By the way, is it possible to replace words with text i got in other file?