i am doing some DOM parsing, and i have some strings i have to clean, they look like this:
$str1 = "var arrayImg=new Array();arrayImg[0]=
http://somepage.com/2013-5-11/1/1.jpg
;getImgString()";
$str2 = "var arrayImg=new Array();arrayImg[0]=
http://somepage.com/2013-5-11/1/1.jpg
;arrayImg[0]=
http://somepage.com/big/qingliang/2013-5-11/1/2.jpg
;getImgString()"
$str3 = "var arrayImg=new Array();arrayImg[0]=
http://somepage.com/2013-5-11/1/1.jpg
;arrayImg[0]=
http://somepage.com/2013-5-11/1/2.jpg
;arrayImg[0]=
http://somepage.com/2013-5-11/1/3.jpg
;getImgString()"
etc etc, you can see the system, i only need the last URL in the string, the amount of strings is variable, and the amount of links inside the strings is aswell, but i only need the last link in each string.
Should i use REGEX or a series of explode ?
我正在做一些DOM解析,我有一些字符串我必须清理,它们看起来像这样: p>
$ str1 =“var arrayImg = new Array(); arrayImg [0] =
http://somepage.com/2013-5-11/1/1.jpg \ n; getImgString()“;
$ str2 =”var arrayImg = new Array(); arrayImg [0] =
http://somepage.com/2013-5-11/1/1.jpg
; arrayImg [0] =
http://somepage.com/big/qingliang/2013-5-11/1/2.jpg
; getImgString()“
$ str3 =”var arrayImg = new Array(); arrayImg [0] =
http://somepage.com/2013-5-11/1/1.jpg
; arrayImg [0] =
http://somepage.com/2013 -5-11 / 1 / 2.JPG \ N; arrayImg [0] =
http://somepage.com/2013-5-11/1/3.jpg \ N; getImgString()“
代码 > pre>
等等,你可以看到系统,我只需要字符串中的最后一个URL,字符串的数量是可变的,字符串里面的链接数量也是如此,但是 我只需要每个字符串中的最后一个链接。 p>
我应该使用REGEX还是一系列爆炸? p>
div>