我有一个字符串
HCl3C24
我想在 php 中打破这个字符串,比如
array(0 => H , 1 => Cl, 2 => 3 , 3 => C, 4 => 24)
现在我正在尝试:
$matches = array();
$string = "HCl4";
preg_match_all('/([0-9]+|[a-zA-Z]+)/',$string,$matches);
print_r($matches[0]);
它不适用于字符,但适用于数字。有人可以在这里帮助我吗?