标签:*** bsp string nts out 拆分 ++ str span
1 package demo3; 2 3 //拆分歌词 4 public class Lyrics { 5 public static void main(String[] args) { 6 System.out.println("****************原歌词格式****************"); 7 String s="长亭外 古道边 芳草碧连天 晚风拂 柳笛声残 夕阳山外山"; 8 System.out.println(s); 9 10 System.out.println("\n****************拆分后歌词格式****************"); 11 String[] prints=new String[100]; //定义接收数组 12 prints=s.split(" "); //按照空格进行拆分 13 for(int i=0;i<prints.length;i++) { 14 System.out.println(prints[i]); 15 } 16 } 17 }
标签:*** bsp string nts out 拆分 ++ str span
原文地址:https://www.cnblogs.com/baichang/p/10107972.html