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 的新手,我想查找姓氏、名字
我已将以下内容写为正则表达式,但它总是失败。我不在乎姓氏是否包含数字或任何内容,但我需要检查的是姓氏和名字是否由空格和逗号分隔。我可以手动完成,但我想使用正则表达式来做到这一点。
^[\\w][\\w\\,\\s\\w]$
试试这个正则表达式模式:
^(\S)+, (\S)+$
String[] lastNameFirstName = fullName.split("\\s+,\\s+");
索引 0 将是您的姓氏,而索引 1 将是您的名字。