import java.util.regex.*; public class E { public static void main(String args[ ]) { String s = "登陆www.tup.com.cn,输入耿祥义可查询全部作者教材,欢迎您登陆"; String regex = "登陆"; Pattern p =Pattern.compile(regex); Matcher m =p.matcher(s); s = m.replaceAll("登录"); regex = "登录"; p =Pattern.compile(regex); m =p.matcher(s); int count =0; String item =""; while(m.find()) { item = m.group(); count ++; } System.out.printf("%d:%s",count,item); }
时间: 2024-04-02 22:32:41 浏览: 201
这是一个Java程序,它使用正则表达式将字符串中的“登陆”替换为“登录”,并统计替换后的字符串中“登录”出现的次数和最后一次出现的位置。
具体来说,这个程序的输出结果为:
```
2:登录
```
程序的具体实现如下:
```java
import java.util.regex.*;
public class E {
public static void main(String args[]) {
String s = "登陆www.tup.com.cn,输入耿祥义可查询全部作者教材,欢迎您登陆";
String regex = "登陆";
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(s);
s = m.replaceAll("登录"); // 将所有匹配到的 "登陆" 替换为 "登录"
regex = "登录";
p = Pattern.compile(regex);
m = p.matcher(s);
int count = 0;
String item = "";
while (m.find()) { // 查找所有匹配到的 "登录",并统计数量和最后一次出现的位置
item = m.group();
count++;
}
System.out.printf("%d:%s", count, item); // 输出结果
}
}
```
其中,`Pattern.compile()` 方法和 `Matcher` 类的使用方法在上一个问题中已经解释过了。`m.replaceAll()` 方法将所有匹配到的字符串替换为指定的字符串,最后用 `while (m.find())` 循环统计匹配到的字符串数量和最后一次出现的位置,最终输出结果。
阅读全文