正则练习

Posted exexex

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则练习相关的知识,希望对你有一定的参考价值。

练习1

String str= "我我我   要要要   要 学学学   编编编   编编 编程程程 程程。";
        String regex=" +";
        str=str.replaceAll(regex, "");
        regex ="(.)\\1+";
        str=str.replaceAll(regex, "$1");
        System.out.println(str);

练习2

//将下列ip排序
        String str= "192.68.1.254 102.49.23.013 10.10.10.10 2.2.2.2 8.109.90.30";
        //在前面加俩零
        str=str.replaceAll("(\\d+)","00$1" );
        //取后三位
        str=str.replaceAll("0*(\\d{3})","$1" );
        //切割
        
        String[] ips =  str.split(" +");
        Arrays.sort(ips);
        for(String ip :ips)
        {
            ip=ip.replaceAll("0*(\\d+)", "$1");            
            System.out.println(ip);            
        }    

 

以上是关于正则练习的主要内容,如果未能解决你的问题,请参考以下文章

Java正则表达式详解+练习

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

javaSrcipt——练习正则表达式(初级练习集中营)

Python使用正则表达式实现计算器练习

字符串replace的理解和练习和配合正则表达式的使用