I need to separate out a bunch of image urls from a document in which the images are associated with names like this:
bellpepper = "http://images.com/bellpepper.jpg"
cabbage = "http://images.com/cabbage.jpg"
lettuce = "http://images.com/lettuce.jpg"
pumpkin = "http://images.com/pumpkin.jpg"
I want to remove all text except the URLs from the file by deleting the variable name, equals sign and double quotes so I have a new file that is just a list of URLs, one per line.
I've tried various ways of identifying the non-URL data using regular expressions in Textpad by checking the "Regular expression" checkbox in the Find dialog window but Textpad doesn't seem to like any of them.
Under
Configure->Preferences->Editor
there's an option:
"Use POSIX regular expression syntax"
As opposed to what?
Is it possible that my problems performing this regex operation have to do with some quirk of Textpad's implementation of regex?