码迷,mamicode.com
首页 > 编程语言 > 详细

Java正则表达式使用 | 叠加

时间:2014-11-09 20:40:24      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   使用   java   sp   for   div   

public class Test {
    public static void main(String[] args) {
        String s = "ni\nhao\nma he yi\nyong";
        String[] strs = s.split("\\n| ");
        for(String string : strs) {
            System.out.println(string);
        }
    }
}

一个字符串同时匹配换行和空格,最终输出:

ni
hao
ma
he
yi
yong

Java正则表达式使用 | 叠加

标签:style   blog   color   ar   使用   java   sp   for   div   

原文地址:http://www.cnblogs.com/wuyou/p/4085768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!