我不想要preg_match_all ...因为表单字段只允许数字和字母......只是想知道正确的语法是什么......
没什么特别的......只需要知道只查找数字和字母的preg_match语句的正确语法。像
这样的东西preg_match('/^([^.]+)\.([^.]+)\.com$/', $unit)
但这也不是寻找数字......
答案 0 :(得分:26)
如果您只想确保字符串仅包含字母数字字符。 A-Z,a-z,0-9您不需要使用正则表达式。
文档中的示例:
<?php
$strings = array('AbCd1zyZ9', 'foo!#$bar');
foreach ($strings as $testcase) {
if (ctype_alnum($testcase)) {
echo "The string $testcase consists of all letters or digits.\n";
} else {
echo "The string $testcase does not consist of all letters or digits.\n";
}
}
?>
以上示例将输出:
The string AbCd1zyZ9 consists of all letters or digits.
The string foo!#$bar does not consist of all letters or digits.
答案 1 :(得分:11)
if(preg_match("/[A-Za-z0-9]+/", $content) == TRUE){
} else {
}
答案 2 :(得分:3)
如果您想匹配超过1,那么您需要为我们提供一些代码,我们可以提供更好的帮助。
虽然在此期间:
preg_match("/([a-zA-Z0-9])/", $formContent, $result);
print_r($result);
:)