编程语言
首页 > 编程语言> > php – 字符串中的下标数字

php – 字符串中的下标数字

作者:互联网

我想从字符串下标每个数字.

例如 :

$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 );

Demo

标签:php,regex,subscript
来源: https://codeday.me/bug/20190611/1221475.html