using regex to get a string between 2 strings and can’t figure out how to ignore the start and end strings.
"imgurl=(.*?)&"
this expression working fine except i need to ignore imgurl= and &?
by matching the following string:
imgurl=mytext&
the result i got is like
imgurl=mytext&
it has to be
mytext
You haven’t specified the language, but be sure you are checking the appropriate match group…
Obviously, group 1 is what you’re looking for…
EDIT
For vb.net code..
Assuming you get the match, you need the value from
match.Groups(1).Value