How to match a part of an <iframe> tag?

后端 未结 6 2022
小鲜肉
小鲜肉 2021-01-21 13:48

I\'m trying to match the highlighted parts of this string:

 maybe something here src=\"http://some.random.url.com/\" and the string continues.         


        
6条回答
  •  -上瘾入骨i
    2021-01-21 14:02

    If youre source is well formed xml you can also use xpath to find the string.

    xpath("//iframe[@src]/@src");
    ?>
    

提交回复
热议问题