如何用正则表达式匹配小括号里面的内容
答案:1 悬赏:40 手机版
解决时间 2021-03-06 12:26
- 提问者网友:谁的错
- 2021-03-05 16:22
如何用正则表达式匹配小括号里面的内容
最佳答案
- 五星知识达人网友:患得患失的劫
- 2021-03-05 16:35
参考一下:
public static void main(String[] args) {
String content = "(hello)";
String regex = "(?<=\\().*(?=\\))";
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(content);
while (m.find()) {
System.out.println(m.group());
}
}
public static void main(String[] args) {
String content = "(hello)";
String regex = "(?<=\\().*(?=\\))";
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(content);
while (m.find()) {
System.out.println(m.group());
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯