gpt4 book ai didi

Java 使用正则表达式验证输入字符串

转载 作者:太空狗 更新时间:2023-10-29 23:02:25 25 4
gpt4 key购买 nike

例如:

String string="Marc Louie, Garduque Bautista";

我想检查一个字符串是否只包含单词、逗号和空格。我试过使用正则表达式,我得到的最接近的是:

String pattern = "[a-zA-Z]+(\\s[a-zA-Z]+)+";

但它不检查那里是否有逗号。有什么建议吗?

最佳答案

你需要使用模式

^[A-Za-z, ]++$

例如

public static void main(String[] args) throws IOException {
final String input = "Marc Louie, Garduque Bautista";
final Pattern pattern = Pattern.compile("^[A-Za-z, ]++$");
if (!pattern.matcher(input).matches()) {
throw new IllegalArgumentException("Invalid String");
}
}

编辑

根据迈克尔的 astute comment OP 可能意味着一个逗号,在这种情况下

^[A-Za-z ]++,[A-Za-z ]++$

应该工作。

关于Java 使用正则表达式验证输入字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16005234/

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