gpt4 book ai didi

Java,正则表达式 : Adding umlaut and other german characters for first-name

转载 作者:行者123 更新时间:2023-12-01 07:02:13 26 4
gpt4 key购买 nike

我想使用正则表达式验证用户发送的名字。我找到了多个名字表达式,但我还想添加德语字符,例如 äöüß 和法语字符 à À è È é É ù Ù ì Ì ò Ò ñ Ñ到它。我尝试了 SO here 建议的正则表达式评估器,但这没有帮助。每当我添加一个额外的方括号时,它都会告诉我您的正则表达式与主题字符串不匹配。。我做错了什么?

当前正则表达式模式:

^([A-Z][a-z]*((\s)))+[A-Z][a-z][äöüß]*$

谢谢。

最佳答案

It is not a good idea to restrict people's names too much ,我建议使用一个相当通用的正则表达式:

s.matches("(?U)[\\p{L}\\p{M}\\s'-]+")

此正则表达式将匹配仅包含 1 个或多个 Unicode 字母、变音符号、空格、撇号或连字符的字符串。

如果您需要更多限制性检查,例如空格只能出现在字符串内部,并且只有在不连续的情况下,才使用分组:

"(?U)[\\p{L}\\p{M}'-]+(?:\\s[\\p{L}\\p{M}'-]+)*"

关于Java,正则表达式 : Adding umlaut and other german characters for first-name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40764681/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com