求java正则匹配<sup>任意字符<⼀sup> 的sup标签之间的内容

2024-11-21 00:25:02
推荐回答(2个)
回答1:

String  str = "任意字符 "; 
            Pattern p = Pattern.compile("([^<]*)"); 
            Matcher m = p.matcher(str); 
            while(m.find()) { 
                System.out.println(m.group(1));
            }

 若不能解决,可追问,我继续帮你

回答2:

		String s = "任意字符";

Pattern p = Pattern.compile("(.*)");
Matcher m = p.matcher(s);
if (m.find()) {
System.out.println(m.group(1));
}