//补充完成以下程序功能 import java.util.TreeSet; class RegexTest { public static void main(String []args) { checkMail(); StringRepalce(); ipSort(); } /* 需求: 对邮件地址进行校验,判断给出的mail 是否是合法的邮箱地址 */ public static void checkMail() { //补充完成判断mail 是否合法的邮箱地址 String mail = "abc12@sina.com"; } /* 需求: 将下列字符串转成:我要编程 */ public static void StringRepalce() { //补充 完成功能:将字符串转成:我要编程 String str = "我我...我我..我...我要..要要..学学学学...学学..编...编程程"; } /* 192.68.1.254 102.49.23.013 10.10.10.10 2.2.2.2 8.109.90.30 将ip地址进行地址段的顺序排序 还按照字符串自然顺序,只要让它们每一段都是3位即可 1,按照每一段需要的最多的0进行补齐 那么每一段就会至少保证有3位 2,将每一段只保留3位 这样,所有的ip地址都是每一段3位 */ public static void ipSort() { String ip = "192.68.1.254 102.49.23.013 10.10.10.10 2.2.2.2 8.109.90.30"; } } 实现效果如下所示: 4. 提取数字 public static void getNumber() { //将字符串中的数字提出处理并输出 String string="12334我的QQ是: 456456 我的电话是:0532214我的邮箱是:123:aaa@aaa.com"; }
时间: 2024-02-14 17:21:06 浏览: 108
java代码-import java.util.Scanner;
import java.util.TreeSet;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
class RegexTest {
public static void main(String[] args) {
checkMail();
StringReplace();
ipSort();
getNumber();
}
/*
* 需求: 对邮件地址进行校验,判断给出的mail是否是合法的邮箱地址
*/
public static void checkMail() {
String mail = "abc12@sina.com";
String mailRegex = "[a-zA-Z0-9]+@[a-zA-Z0-9]+(\\.[a-zA-Z]+)+";
Pattern pattern = Pattern.compile(mailRegex);
Matcher matcher = pattern.matcher(mail);
if (matcher.matches()) {
System.out.println(mail + " is a valid email address.");
} else {
System.out.println(mail + " is not a valid email address.");
}
}
/*
* 需求: 将下列字符串转成:我要编程
*/
public static void StringReplace() {
String str = "我我...我我..我...我要..要要..学学学学...学学..编...编程程";
String replaceStr = str.replaceAll("[^我要编程]", "");
System.out.println(replaceStr);
}
/*
* 192.68.1.254 102.49.23.013 10.10.10.10 2.2.2.2 8.109.90.30 将ip地址进行地址段的顺序排序
* 还按照字符串自然顺序,只要让它们每一段都是3位即可 1,按照每一段需要的最多的0进行补齐 那么每一段就会至少保证有3位 2,将每一段只保留3位 这样,所有的ip地址都是每一段3位
*/
public static void ipSort() {
String ip = "192.68.1.254 102.49.23.013 10.10.10.10 2.2.2.2 8.109.90.30";
TreeSet<String> set = new TreeSet<String>();
String[] ips = ip.split(" ");
for (String s : ips) {
String[] nums = s.split("\\.");
StringBuilder sb = new StringBuilder();
for (String num : nums) {
sb.append(String.format("%03d", Integer.parseInt(num)));
}
set.add(sb.toString());
}
for (String s : set) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < s.length(); i += 3) {
sb.append(Integer.parseInt(s.substring(i, i + 3))).append(".");
}
sb.deleteCharAt(sb.length() - 1);
System.out.println(sb.toString());
}
}
/*
* 提取数字
*/
public static void getNumber() {
String string = "12334我的QQ是: 456456 我的电话是:0532214我的邮箱是:123:aaa@aaa.com";
String regex = "\\d+";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(string);
while (matcher.find()) {
System.out.println(matcher.group());
}
}
}
阅读全文