标签: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
标签:style blog color ar 使用 java sp for div
原文地址:http://www.cnblogs.com/wuyou/p/4085768.html