我正在做一些 DOM 解析,我有一些字符串需要清理,它们看起来像这样:
$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()"
等等等等,你可以看到系统,我只需要字符串中的最后一个URL,字符串的数量是可变的,字符串中的链接数量也是如此,但我只需要每个字符串中的最后一个链接。
我应该使用 REGEX 还是一系列爆炸?