Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望用户能够输入带有空格的配置文件文本(我添加了空格),但也允许使用逗号和点。现在,如果用户在文本中有逗号,则会出现错误。 我用过这个:
/^[a-zA-Z0-9 ]{50,}+$/
谢谢。
你可以试试这个正则表达式:
/^[a-zA-Z0-9\s,.]{50,}$/
添加,和.允许 和 。也是。\s 允许空间。 {50,}确保输入至少为 50 个字符。
,
.
{50,}
我相信您正在寻找的是以下正则表达式:
/^([a-zA-Z0-9\s,.]+){50,}$/
解释:允许一个或多个字母(大写和小写)、数字 (0-9)、逗号、至少 50 个字符长的句点
我用 \s 替换了空格,以便更清楚地看到您的空间也被编辑为允许一个点。