当前位置: 技术问答>java相关
用正则表达式取字符串的问题
来源: 互联网 发布时间:2017-04-16
本文导语: 如何用正则表达式取出和之间的内容? 例如: test1 test2 我想取出 test1 test2 | 改成下面这个更好些! public class test { public static void main(String args[]) { String str="test1test2"; Strin...
如何用正则表达式取出
例如:
我想取出
test1
test2
和
之间的内容?例如:
test1
test2
我想取出
test1
test2
|
改成下面这个更好些!
public class test {
public static void main(String args[]) {
String str="
String str1="(
public class test {
public static void main(String args[]) {
String str="
test1test2
";String str1="(
)(.*)()";
java.util.regex.Pattern p=Pattern.compile(str1);
Matcher m=p.matcher(str);
boolean f=m.find();
StringBuffer sb=new StringBuffer();
while(f) {
m.appendReplacement(sb,"$2");
f=m.find();
}
m.appendTail(sb);
System.out.print(sb.toString());
}
}
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。