如何使用PHP拆分这个单词?

时间:2011-01-21 00:52:51

标签: php php-5.3

有很多这样的词......

mathewthomas256
alexcannon5623
kohlanjame9568
nancycherikom257

如何使用PHP从上面的名称中删除数字?有大约20万名这样的名字

3 个答案:

答案 0 :(得分:3)

preg_replace("/\d+$/gm", "", input)

正则表达式是行的末尾(\d+)“的”所有数字($)。由于m修饰符而导致这种情况以基于行的方式工作,并且因为g修饰符而在所有行上全局使用。

答案 1 :(得分:2)

$remove = array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9");
$onlynames = str_replace($remove, "", "name here");

答案 2 :(得分:0)

preg_replace(“/ \ d /”,“”,input)