实用类-拆分歌词
Posted baichang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实用类-拆分歌词相关的知识,希望对你有一定的参考价值。
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(" ****************拆分后歌词格式****************"); 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 }
以上是关于实用类-拆分歌词的主要内容,如果未能解决你的问题,请参考以下文章