我正在尝试匹配某个名称为
的字符串preg_match("/^[a-zA-Z]{1, 10}/", "stackoverflow");
但这给了我一个错误,如果字符串大于值a且小于值b,我将如何匹配?
答案 0 :(得分:4)
太多的空白。
/^[a-zA-Z]{1,10}/
答案 1 :(得分:1)
两个问题:
{x,y}
preg_replace
而不是preg_match
您的代码应为:
$input = "Frank";
$output = preg_replace("/^[a-zA-Z]{1,10}/", "stackoverflow", $input);
print $output;