摘要: 转自:http://myoraclex.blog.51cto.com/2288027/578698public class StringToArray { public static void main(String args[]) { String s = "北京天竺出口加工区 C1101"; String[] arry = s.split("\\s+"); System.out.println(arry.length); System.out.println("arry[0]=" + arry[0])... 阅读全文
posted @ 2012-04-16 01:01 川川.aug 阅读(317) 评论(0) 推荐(0) 编辑