java怎么获取字串符中的换行符次数?
展开全部
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @ClassName: RegTest
* @Description: TODO
* @author: liuyx
* @date: 2016年5月6日下午2:10:45
*/
public class RegTest {
public static void main(String[] args) throws Exception {
String str="formfirnformsajfowiehongform";
String regEx="form"; //要匹配的子串,可以用正则表达式
Pattern p=Pattern.compile(regEx);
Matcher m=p.matcher(str);
int i = 0;
while(m.find()) {
i++;
}
System.out.println("字符串form在str中出现的次数为:"+i);
}
}
import java.util.regex.Pattern;
/**
* @ClassName: RegTest
* @Description: TODO
* @author: liuyx
* @date: 2016年5月6日下午2:10:45
*/
public class RegTest {
public static void main(String[] args) throws Exception {
String str="formfirnformsajfowiehongform";
String regEx="form"; //要匹配的子串,可以用正则表达式
Pattern p=Pattern.compile(regEx);
Matcher m=p.matcher(str);
int i = 0;
while(m.find()) {
i++;
}
System.out.println("字符串form在str中出现的次数为:"+i);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询