允许此正则表达式中的空格

时间:2012-01-17 00:43:53

标签: php regex

我之前在用户名匹配中使用过此正则表达式,但现在我希望能够允许空格。我该怎么做呢?

            if (!preg_match('/^[a-zA-Z0-9]+$/', $teamname)) {
                $errors[] = "Team name can only contain letters, numbers, and no spaces.";
            }

1 个答案:

答案 0 :(得分:0)

if (!preg_match('/^[a-zA-Z0-9 ]+$/', $teamname)) {
    $errors[] = "Team name can only contain letters, numbers, and spaces.";
}

只需添加一个空格。