Extract text

A place to try and solve your RegEx problems.
Post Reply
User avatar
Animention

Extract text

Post 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? ;)
User avatar
DV
Posts: 78
Joined: Fri Jun 10, 2011 9:00 am

Re: Extract text

Post by DV »

You could try (in regular expression mode)

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

Re: Extract text

Post 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?
Post Reply