gpt4 book ai didi

Java:这个正则表达式有什么问题?

转载 作者:行者123 更新时间:2023-12-01 06:41:02 24 4
gpt4 key购买 nike

我正在尝试获取标签内的文本,即 <text> 。我正在做:

Pattern pattern = Pattern.compile("(?<=\\<).*(?=\\>)");

我认为这表示:任何字符 0 次或多次之前都是 < (正向后看),然后是 > (积极的前瞻)。

Matcher m = pattern.matcher(data);  
if (!m.matches()) continue; //Called in a for loop

但是没有匹配例如输入<text> some other stuff here .

我在这里做错了什么?

最佳答案

不要使用m.matches(),而是使用m.find()

来自JavaDocmatches() 上:

Attempts to match the entire region against the pattern.

关于Java:这个正则表达式有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9108663/

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