从 PHP 字符串中删除除字母以外的所有内容

2021-12-25 00:00:00 string regex replace php

如何从字符串中删除除字母之外的所有内容?我有一个名字输入字段.

解决方案

在 PHP 中,您可以使用(如@rczajka 和@mario 所建议的):

preg_replace('/PL/u', '', $str)

工作示例:http://codepad.viper-7.com/V78skl

您可能想查看此正则表达式教程

How can I remove everything from a string apart from letters? I have an input field for first names.

解决方案

In PHP, you can use (as suggested by @rczajka and @mario):

preg_replace('/PL/u', '', $str)

Working Example: http://codepad.viper-7.com/V78skl

You may want to checkout this Tutorial for regex

相关文章