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.
我正在为这个小而令人困惑的要求挠头。
我需要一个名称字段的正则表达式,它只允许使用字母、撇号、句号、逗号和连字符。名称字段也不应允许超过 150 个字符。
任何帮助将非常感激!
使用正则表达式模式
^[a-zA-Z'.,-]{0,150}$
如果还需要最小长度,请替换0为这样的数字...
0