gpt4 book ai didi

Java 正则表达式 : Extract multiple sub-strings from a string

转载 作者:行者123 更新时间:2023-12-01 09:30:39 26 4
gpt4 key购买 nike

我想从包含在某些标签中的字符串中提取所有子字符串。例如,如果我有一个输入字符串,其中一些子字符串包含在“*”标签中:

I contain two terms to extract: *first term* and *second term*

我想要得到的是两个子字符串“第一项”和“第二项”。我尝试使用以下代码:

List<String> matches = new ArrayList<>();
Matcher m = Pattern.compile(".*\\*(.*)\\*.*").matcher(inputString);
while(m.find()){
matches.add(m.group(1));
}

但这给了我不正确的结果。我阅读了有关 group 方法的 API 文档,但说实话,我不太明白它的含义和工作原理。如果有人能告诉我在这里收集所有想要的子字符串的最佳方法是什么,我将不胜感激。

谢谢!

最佳答案

尝试以下表达式:

\\*([^\\*]+)\\*

所需的子字符串将位于第一组中。

关于Java 正则表达式 : Extract multiple sub-strings from a string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39441302/

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