我想从字符串中删除不需要的characers,只使用preg_replace返回一个数值.
字符串格式可以如下:
一些文字£100
100英镑的一些文字
一些文字100一些文字
非常感谢
$NumericVal = preg_replace("/[^0-9]/","",$TextVariable);
[]中的^表示除以下内容之外的任何内容
编辑删除多余的