How can I use rex to retrieve any characters between these 2 strings, "delimeter" and "http://www.somesite.com"? Do I need to replace the '.' literals in the second string with '/.'?
Thanks, that almost did the job. Rex is now returning a string that includes "delimeter". How can I return anything between the last "delimeter" and "http://www.somesite.com"?
What I'm actually trying to do is retrieve the column names from an html table which are in the first row of the table. Can this be done using timport?
Probably. You would probably use "recexpr" and supply a single rex expression to match the entire "row". Then you can pickout the data from the various columns. See the timport manual for how to use recexpr.