gpt4 book ai didi

java - 在java中匹配正则表达式

转载 作者:行者123 更新时间:2023-11-29 09:42:40 25 4
gpt4 key购买 nike

String text = "[! hello ¡world ¡] otra cosa ¡]";
String pt = "\\[!(.*)¡\\]";
Matcher mc = Pattern.compile(pt).matcher(text);
while( mc.find() ){
System.out.println(mc.group(1));
}

此代码打印hello ¡world ¡] otra cosa

什么是只匹配 hello ¡world 的模式?

我没有找到一种否定文字字符串而不仅仅是字符的方法。类似于:([^(¡\])]*)

问题是:
如何匹配非文字字符串的所有内容?

最佳答案

*

后面加一个 ?即可
String pt = "\\[!(.*?)¡\\]";

关于java - 在java中匹配正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1751463/

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