Skip to content

Latest commit

 

History

History
114 lines (84 loc) · 2.15 KB

2_应用.md

File metadata and controls

114 lines (84 loc) · 2.15 KB

应用

判断功能

String 类

public boolean matches(String regex)
/**
* 判断手机号码是否满足要求
*/
public static void main(String[] args) {
    //键盘录入手机号码
    Scanner sc = new Scanner(System.in);
    System.out.println("请输入你的手机号码:");
    String phone = sc.nextLine();

    //定义手机号码的规则
    String regex = "1[38]\\d{9}";

    //调用功能,判断即可
    boolean flag = phone.matches(regex);

    //输出结果
    System.out.println("flag:"+flag);
}

分割功能

String类的

public String[] split(String regex)
/**
* 根据给定正则表达式的匹配拆分此字符串
*/
public static void main(String[] args) {
    //定义一个年龄搜索范围
    String ages = "18-24";

    //定义规则
    String regex = "-";

    //调用方法
    String[] strArray = ages.split(regex);
    int startAge = Integer.parseInt(strArray[0]);
    int endAge = Integer.parseInt(strArray[1]);
}

替换功能

String 类的

public String replaceAll(String regex,String replacement)
/**
* 去除所有的数字
*/
public static void main(String[] args) {
    // 定义一个字符串
    String s = "helloqq12345worldkh622112345678java";


    // 直接把数字干掉
    String regex = "\\d+";
    String ss = "";

    String result = s.replaceAll(regex, ss);
    System.out.println(result);
}

获取功能

Pattern和Matcher类的使用

/**
* 模式和匹配器的基本顺序
*/
public static void main(String[] args) {
    // 模式和匹配器的典型调用顺序
    // 把正则表达式编译成模式对象
    Pattern p = Pattern.compile("a*b");
    // 通过模式对象得到匹配器对象,这个时候需要的是被匹配的字符串
    Matcher m = p.matcher("aaaaab");
    // 调用匹配器对象的功能
    boolean b = m.matches();
    System.out.println(b);

    //这个是判断功能,但是如果做判断,这样做就有点麻烦了,我们直接用字符串的方法做
    String s = "aaaaab";
    String regex = "a*b";
    boolean bb = s.matches(regex);
    System.out.println(bb);
}