0

我想使用正则表达式从字符串中提取字母和数字,但我对正则表达式非常陌生,想问我是否应该使用 rexexp 或 preg_match

4

3 回答 3

1

使用preg_match. “rexexp”可能只是“regexp”的拼写错误版本,“regexp”是“正则表达式”的缩写。

于 2013-11-08T15:14:47.793 回答
0

preg_match 是常用的,有关 preg_match 的详细信息,请参见http://php.net/manual/en/function.preg-match.php

于 2013-11-08T15:13:41.573 回答
0

我不确定您的系统的范围,但如果您只想进行一些小操作,我建议您使用strpos 。来自 preg_match 的php 文档(就在评论上方):

“如果您只想检查一个字符串是否包含在另一个字符串中,请不要使用 preg_match()。请改用 strpos() 或 strstr(),因为它们会更快。”

于 2013-11-08T15:28:11.937 回答