Hello all,
I have the folowing string
"url(http://www.somelocatio n/anaywhere/image.jpg)" stored in the variable
str_image
and I want to extract the string between the brackets.
I have
ar_match=str_im age.match("url([.]*)");
it returns
0=url
1=
How do I get this to work?
thanks in advance Rob
I have the folowing string
"url(http://www.somelocatio n/anaywhere/image.jpg)" stored in the variable
str_image
and I want to extract the string between the brackets.
I have
ar_match=str_im age.match("url([.]*)");
it returns
0=url
1=
How do I get this to work?
thanks in advance Rob
Comment