有很多这样的词......
mathewthomas256
alexcannon5623
kohlanjame9568
nancycherikom257
如何使用PHP从上面的名称中删除数字?有大约20万名这样的名字
答案 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)