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

2024年11月21日 00:25
有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));
}