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.
私は正規表現を初めて使用し、姓、名を探したい
私は以下を正規表現として書きましたが、常に失敗しています。姓に数字などが含まれているかどうかは関係ありませんが、確認する必要があるのは、姓と名がスペースとコンマで区切られていることだけです。手動で行うことはできますが、正規表現を使用してこれを行いたいと思います。
^[\\w][\\w\\,\\s\\w]$
この正規表現パターンを試してください:
^(\S)+, (\S)+$
String[] lastNameFirstName = fullName.split("\\s+,\\s+");
インデックス0が名前になり、インデックス1が名になります。