名称的regex_match

时间:2013-01-31 18:26:38

标签: php regex

我对名字和姓氏进行了验证

regex_match[/^[a-zA-Z \'-()]{0,25}+$/]

我遗失了哪些角色?我怎么知道名字和名字之外的字符是什么。

或名称是否有regex_match?

1 个答案:

答案 0 :(得分:1)

试试这个

regex_match[^[A-Z]'?[- a-zA-Z]( [a-zA-Z])*$]

如果你需要寻找像JérémieO'Co-nor这样的名字

试试这个

regex_match[^([ \u00c0-\u01ffa-zA-Z'\-])+$]