如何从字符串中获取字符串

时间:2017-03-16 15:47:41

标签: php

我有一个长字符串,该字符串的一部分是:<span itemprop="ratingValue">9.26</span>。我想将9.26作为字符串(使用explode?)。谢谢你的帮助。 PS:将html代码保存为字符串。

1 个答案:

答案 0 :(得分:0)

使用preg_match()

$input = 'verylongstring<withother>random</withother>
          tags<span itemprop="ratingValue"><9.26</span>';
preg_match('~<span itemprop="ratingValue">(.*?)</span>~', $input, $output);
echo $output[1]; // 9.26