I'm trying to find the Rex expression for:
If there is an "image.gif" string before "asp?item=699124" and no any other "asp?item=xxxxxx" strings in between, where xxxxxx is a number.
An example of valid match is:
sometext<image.gif>sometext<href='asp?item=699124'>
I'm trying to find the Rex expression for:
If there is an "image.gif" string before "asp?item=699124" and no any other "asp?item=xxxxxx" strings in between, where xxxxxx is a number.
An example of valid match is:
sometext<image.gif>sometext<href='asp?item=699124'>
Actually this doesn't work cause I might have "Lasp?item=xxxxx" where xxxxx is a another item ID AS a string before "asp?item=699124" ,,,
so let me put it in another way...
I want to get the first occurance of "<TR" before the string "asp?item=699124" .
I've tried :
"<TR+[^<TR]*\L.asp?item=700109\L"
even "<TR+.+\L.asp?item=700109\L" doesn't return anything.
Note:
In my previous message I forgot to paste the ">>" before "\L.asp?item=700109\L".
so it's:
I've tried :
"<TR+[^<TR]*>>\L.asp?item=700109\L"
"<TR+.+>>\L.asp?item=700109\L"