gpt4 book ai didi

java - 逗号、空格加上某个单词的正则表达式模式是什么?

转载 作者:行者123 更新时间:2023-12-01 18:16:05 28 4
gpt4 key购买 nike

我需要使用 Java 的 split() 方法分割字符串。如何编写某个单词的分隔符的正则表达式模式?例如“和”?

我得到了分割空格和逗号的模式,即 [,\\s] 但我想添加单词 and ,以便它也成为分隔符.

我尝试了很多组合,包括 [,\\s]|(and) 但没有运气。

最佳答案

不太确定没有输入和所需的输出,但您可以将最后一个模式更改为: \\s(?!and|,)|\\s*,\\s*|\\s+和\\s+

例如:

String toSplit = "Blah,blah, foo ,bar and blah again";
System.out.println(
Arrays.toString(
toSplit.split(
// ┌ whitespace not followed by "and" or ","
// | ┌ or
// | | ┌ 0/more whitespace, ",", 0/more whitespace
// | | | ┌ or
// | | | |┌ 1/more whitespace, "and", 1/more ws
// | | | ||
"\\s(?!and|,)|\\s*,\\s*|\\s+and\\s+"
)
)
);

输出

[Blah, blah, foo, bar, blah, again]

关于java - 逗号、空格加上某个单词的正则表达式模式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29415343/

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