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.
私はそのように姓名を検証しています
regex_match[/^[a-zA-Z \'-()]{0,25}+$/]
足りないキャラクターはありますか?ファーストネームとラストネームで除外できる文字を確認するにはどうすればよいですか。
または名前のregex_matchはありますか?
これを試して
regex_match[^[A-Z]'?[- a-zA-Z]( [a-zA-Z])*$]
JérémieO'Co-norのような名前を選ぶ必要がある場合
regex_match[^([ \u00c0-\u01ffa-zA-Z'\-])+$]