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.
大家好,我需要正则表达式方面的帮助:我需要正则表达式:1. 接受所有类型的字符,例如 ą 或 Э 或 Ǿ 或 Я ... 2. 字符数在 3 到 15 之间 3. 不t 包含特殊字符
我猜你想匹配 3 到 15 个 Unicode 字母。为此,您可以使用
new Regex(@"^\p{L}{3,15}$")
如果您还想允许空格,则可以使用字符类:
new Regex(@"^[\p{L} ]{3,15}$")