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
mytextpart will be in captured group 1 (indicated by the first set of brackets in the regex). What language/framework are you using for the regex? Often \1 or $1 refer to whatever's matched by the first set of brackets.