我想从字符串下标每个数字.
例如 :
$str = '1Department of Chemistry, College of 2Education for Pure Science';
我想要的输出:
<sub>1</sub>Department of Chemistry, College of <sub>2<sub>Education for Pure Science
我从字符串中获取所有数字:
//digits from string
preg_match_all('!\d+!', $str, $matches);
print_r($matches);
但是,如何将下标效果应用于数字和打印字符串?
解决方法:
你可以使用preg_replace
:
preg_replace( '!\d+!', '<sub>$0</sub>', $str );