Java

Java 正则表达式

2019-10-07  本文已影响0人  一亩三分甜

正则表达式:符合一定规则的表达式。作用:用于专门操作字符串。好处:可以简化对字符串的复杂操作。弊端:符号定义越多,正则越长,阅读性越差。

具体操作功能:

  • 1.匹配:String matched方法。用规则匹配整个字符串,只要有一处不符合规则,就匹配结束,返回false。
  • 2.切割:String split();
  • 3.替换

校验QQ号,5-15位,数字。

public class RegexDemo {
    public static void main(String[] args) {
        String qq = "12345";
        String regex = "[1-9][0-9]{4,14}";
        boolean flag = qq.matches(regex);
        if (flag)
            System.out.println(qq+"... is ok");
        else
            System.out.println(qq+"... nonononono");
    }
}
//输出
12345... is ok

public class RegexDemo {
    public static void main(String[] args)
    {
        checkQQReg();
    }
    public static void checkQQReg()
    {
        String qq = "12345";
        String regex = "[1-9]\\d{4,14}";
        boolean flag = qq.matches(regex);
        if (flag)
            System.out.println(qq+"... is ok");
        else
            System.out.println(qq+"... nonononono");
    }
}
//输出
12345... is ok

匹配字母和数字

public class RegexDemo {
    public static void main(String[] args)
    {
        demo();
    }
    public static void demo()
    {
        String str = "b2323456789";
        String reg = "[a-zA-Z]\\d*";
        boolean b = str.matches(reg);
        System.out.println(b);
    }
}
//输出
true

匹配手机号段只有13xxx,15xxx,18xxx。

public class RegexDemo {
    public static void main(String[] args)
    {
        checkTel();
    }
    public static void checkTel()
    {
        String tel = "13900001111";
        String telReg = "1[358]\\d{9}";
        System.out.println(tel.matches(telReg));
    }
}
//输出
true

切割

public class RegexDemo {
    public static void main(String[] args)
    {
        splitDemo("zhangsan   lisi  wangwu"," +");
        splitDemo("zhangsan.lisi.wangwu","\\.");
        splitDemo("c:\\abc\\a.txt","\\\\");
           splitDemo("erkkktywwulfrrrsergzzdf","(.)\\1+");
    }
    public static void splitDemo(String str,String reg)
    {
        String[] arr = str.split(reg);
        System.out.println(arr.length);
        for (String s:arr)
        {
            System.out.println(s);
        }
    }
}
//输出
3
zhangsan
lisi
wangwu

3
zhangsan
lisi
wangwu

3
c:
abc
a.txt

5
er
ty
ulf
serg
df

按照叠词完成切割。为了可以让规则的结果被重用,可以将规则封装成一个组。用()完成。组的出现都有编号。从1开始。想要使用已有的组可以通过,\n(n就是组的编号)的形式来获取。

替换

public class RegexDemo {
    public static void main(String[] args)
    {
            replaceAllDemo("wer1245235gagsg23452sag25233nek53246f","\\d{5,}","#");
    }
    public static void replaceAllDemo(String str,String reg,String newStr)
    {
        str = str.replaceAll(reg,newStr);
        System.out.println(str);
    }
}
//输出
wer#gagsg#sag#nek#f

public class RegexDemo {
    public static void main(String[] args)
    {
    replaceAllDemo("erktyqqqurssskshzzzzf","(.)\\1+","#");
    }
    public static void replaceAllDemo(String str,String reg,String newStr)
    {
        str = str.replaceAll(reg,newStr);
        System.out.println(str);
    }
}
//输出
erkty#ur#ksh#f

将重叠的词替换成单个字母zzzzz->z

public class RegexDemo {
    public static void main(String[] args)
    {
    replaceAllDemo("erktyqqqurssskshzzzzf","(.)\\1+","$1");
    }
    public static void replaceAllDemo(String str,String reg,String newStr)
    {
        str = str.replaceAll(reg,newStr);
        System.out.println(str);
    }
}
//输出
erktyqurskshzf

获取

  • 1.匹配
public class RegexDemo {
    public static void main(String[] args)
    {
        getDemo();
    }
  public static void getDemo()
    {
        String str = "123456";
        String reg = "[1-9]\\d{4,14}";
        //将规则封装成对象
        Pattern p = Pattern.compile(reg);
        //让正则对象和要作用的字符串相关联,获取匹配器对象。
        Matcher m = p.matcher(str);
        //其实String类中的matches方法,用的就是Pattern和Matcher对象来完成的。只不过被String的方法封装后,用起来较为简单。但是功能却单一。
        System.out.println(m.matches());
    }
}
//输出
true
  • 2.查找获取
public class RegexDemo {
    public static void main(String[] args)
    {
        getDemo0();
    }
   public static void getDemo0()
    {
        String str = "ming tian jiu yao fang jia le ,da jia";
        String reg = "\\b[a-z]{4}\\b";
        //将规则封装成对象。
        Pattern  p = Pattern.compile(reg);
        //让正则对象和要作用的字符串相关联,获取匹配器对象。
        Matcher m = p.matcher(str);
        while (m.find())
        {
            System.out.println(m.group());
            System.out.println(m.start()+"....."+m.end());
        }
    }
}
//输出
ming
0.....4
tian
5.....9
fang
18.....22

匹配一次后,索引移动到下一个单词的开头。

public class RegexDemo {
    public static void main(String[] args)
    {
        getDemo1();
    }
   public static void getDemo1()
    {
        String str = "ming tian jiu yao fang jia le ,da jia";
        String reg = "\\b[a-z]{4}\\b";
        //将规则封装成对象。
        Pattern  p = Pattern.compile(reg);
        //让正则对象和要作用的字符串相关联,获取匹配器对象。
        Matcher m = p.matcher(str);
    System.out.println("matches:"+m.matches());
        while (m.find())
        {
            System.out.println(m.group());
            System.out.println(m.start()+"....."+m.end());
        }
    }
}
//输出
matches:false
tian
5.....9
fang
18.....22

到底用四种功能中的哪一个呢?或者哪几个呢?

思路方式:

  • 1.如果只想知道该字符是否对与错,使用匹配。
  • 2.想要将已有的字符串变成另一个字符串,替换。
  • 3.想要按照自己的方式将字符串变成多个字符串。切割。获取规则以外的子串。
  • 4.想要拿到符合需求的字符串子串,获取。获取符合规则的子串。
public class RegexDemo {
    public static void main(String[] args)
    {
        test_1();
    }
    public static void test_1()
    {
        String str = "我我...我我...我要...要要.....要要...学学学....编编....编编编....程程.....程程程";
        /*
        将已有字符串变成另一个字符串。使用 替换功能。
        1.可以先将 . 去掉。
        2.再将多个重复的内容变成单个内容。
         */
        str = str.replaceAll("\\.+","");
        System.out.println(str);

        str = str.replaceAll("(.)\\1+","$1");
        System.out.println(str);
    }
}
//输出
我我我我我要要要要要学学学编编编编编程程程程程
我要学编程

ip地址排序

192.68.1.254 102.49.23.013 10.10.10.10 2.2.2.2 8.109.90.30

还按照字符串自然顺序,只要让它们每一段都是3位即可。

  • 1.按照每一段需要的最多的0进行补齐,那么每一段就会至少保证有3位。
  • 2.将每一段只保留3位。这样,所有的ip地址都是每一段3位。
public class RegexDemo {
    public static void main(String[] args)
    {
        ipsort();
    }
    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";

        ip = ip.replaceAll("(\\d+)","00$1");
        System.out.println(ip);
        ip = ip.replaceAll("0*(\\d{3})","$1");
        System.out.println(ip);

        String[] arr = ip.split(" ");
        TreeSet<String> ts = new TreeSet<String>();
        for (String s:arr)
        {
            ts.add(s);
        }
        for (String s:ts)
        {
            System.out.println(s.replaceAll("0*(\\d+)","$1"));
        }
    }
}
//输出
00192.0068.001.00254 00102.0049.0023.00013 0010.0010.0010.0010 002.002.002.002 008.00109.0090.0030
192.068.001.254 102.049.023.013 010.010.010.010 002.002.002.002 008.109.090.030
2.2.2.2
8.109.90.30
10.10.10.10
102.49.23.13
192.68.1.254

对邮件地址进行校验

public class RegexDemo {
    public static void main(String[] args)
    {
        checkMail();
    }
    public static void checkMail()
    {
        String mail = "abc123@sina.com";

//        mail = "1@1.1";
//        mail = "@";
        String reg = "[a-zA-Z0-9_]+@[a-zA-Z0-9]+(\\.[a-zA-Z]+)+";//较为精确地匹配

//        reg = "\\w+@\\w+(\\.\\w+)+";//相对不太精确的匹配。

//        if (mail.indexOf("@")!=-1)
//        {
//            System.out.println(true);
//        }
//        else
//        {
//            System.out.println(false);
//        }
        System.out.println(mail.matches(reg));
    }
}
//输出
true

网页爬虫

获取本地文件中的邮箱


Snip20191007_9.png
public class RegexDemo {
    public static void main(String[] args)throws Exception
    {
        getMails();
    }
    public static void getMails()throws Exception
    {
        BufferedReader bufr = new BufferedReader(new FileReader("mails.txt"));

        String line = null;

        String mailreg = "\\w+@\\w+(\\.\\w+)+";

        Pattern p = Pattern.compile(mailreg);

        while ((line = bufr.readLine())!= null)
        {
            Matcher m = p.matcher(line);

            while (m.find())
            {
                System.out.println(m.group());
            }
        }
    }
}
//输出
yandongyun0@sina.com
yandongyun@sina.cn
785144130@qq.com
cloudbella0@163.com
1040123705@qq.com
yandongyun0@126.com

获取网页中邮箱

public class RegexDemo {
    public static void main(String[] args)throws Exception
    {
        getWebMails();
    }
public static void getWebMails()throws Exception
    {
        URL url = new URL("http://192.168.22.167:8080/myweb/mails.html");

        URLConnection conn = url.openConnection();

        BufferedReader bufIn = new BufferedReader(new InputStreamReader(conn.getInputStream()));

        String line = null;

        String mailreg = "\\w+@\\w+(\\.\\w+)+";

        Pattern p = Pattern.compile(mailreg);

        while ((line = bufIn.readLine())!= null)
        {
            Matcher m = p.matcher(line);

            while (m.find())
            {
                System.out.println(m.group());
            }
        }
    }
}
//输出
yandongyun0@sina.com
yandongyun@sina.cn
785144130@qq.com
cloudbella0@163.com
1040123705@qq.com
yandongyun0@126.com
30.gif
上一篇下一篇

猜你喜欢

热点阅读