如何从字符串中删除那些不在 az 和 0-9 范围内的内容?
我知道这个版本,但我正在寻找最简单的方法?
$string = "HeLLo$ my222 name is zolee0802343134";
$string = strtolower($string);
$replacement = range (a, z);
$replacement2 = range (0, 9);
//
What comes here?
//
I want to get this ->
$string = "hello my name is zolee";
I know a version of this but i'm looking for the simplest way?
$string = "HeLLo$ my222 name is zolee0802343134";
$string = strtolower($string);
$replacement = range (a, z);
$replacement2 = range (0, 9);
//
What comes here?
//
I want to get this ->
$string = "hello my name is zolee";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了简单起见,使用正则表达式。
http://codepad.org/eDmXrnYR
Use regex for simplicity.
http://codepad.org/eDmXrnYR
给你:http://codepad.org/3KuCG2yf
Here you go: http://codepad.org/3KuCG2yf