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

Java 的 String.split 函数,消除空字符串

时间:2014-07-31 12:07:26      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   http   java   io   html   代码   ar   line   

代码:
String str = "the music made   it   hard      to        concentrate";
String delims = "[ ]+";
String[] tokens = str.split(delims);

结果为:
the, music, made, it, hard, to, concentrate

 

原因:
String.split(String regex):参数是一个正则表达式


转自:http://pages.cs.wisc.edu/~hasti/cs302/examples/Parsing/parseString.html

Java 的 String.split 函数,消除空字符串,布布扣,bubuko.com

Java 的 String.split 函数,消除空字符串

标签:style   http   java   io   html   代码   ar   line   

原文地址:http://www.cnblogs.com/keepthinking/p/3880028.html

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