正则表达式:java获取两个字符中间的字符串
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式:java获取两个字符中间的字符串相关的知识,希望对你有一定的参考价值。
- 例如:获取
This is an #apple#.
public static void getFirstContent(String s) {
Pattern p = Pattern.compile("(?<=#).*(?=#)");
Matcher m = p.matcher(s);
m.find();
System.out.println(m.group());
}
//调用
getFirstContent("This is an #apple#.");
- 获取多个匹配的字符串
public static void getAllContent(String s) {
// Pattern p = Pattern.compile("(?:#).*(?:#)");
// Pattern p = Pattern.compile("(?<=#).*(?=#)");
Pattern p = Pattern.compile("#.*?#");
Matcher m = p.matcher(s);
while (m.find()){
System.out.println(m.group());
}
}
//调用
getAllContent("This is an #apple#. But I like #pears#.");
以上是关于正则表达式:java获取两个字符中间的字符串的主要内容,如果未能解决你的问题,请参考以下文章