怎么用正则表达式中表示所有的单词字符信息
答案:1 悬赏:20 手机版
解决时间 2021-03-22 10:45
- 提问者网友:咪咪
- 2021-03-21 23:32
怎么用正则表达式中表示所有的单词字符信息
最佳答案
- 五星知识达人网友:几近狂妄
- 2021-03-22 00:39
this.openReader();
String lineStr = new String();
int countOfWord = 0;
Pattern patternOfWord = Pattern.compile("这里要写上正则表达式");
Matcher m;
try {
while ( (lineStr = this.in.readLine()) != null ){
m = patternOfWord.matcher(lineStr);
if (m.matches())//如果匹配
countOfWord++;//则+1
}
this.closeReader();
return countOfWord;
}
String lineStr = new String();
int countOfWord = 0;
Pattern patternOfWord = Pattern.compile("这里要写上正则表达式");
Matcher m;
try {
while ( (lineStr = this.in.readLine()) != null ){
m = patternOfWord.matcher(lineStr);
if (m.matches())//如果匹配
countOfWord++;//则+1
}
this.closeReader();
return countOfWord;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯