字符串拆分
Posted yrxns
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串拆分相关的知识,希望对你有一定的参考价值。
示例1:
public String[] split(String regex) 将字符串全部拆分
public String[] split(String regex,int limit) 将字符串全部拆分
将字符串全部拆分处理
public class StringDemo { public static void main(String[] args) { String str = "hello world hello mldn"; String result[] = str.split(" "); //将字符串全部拆分,按照空格 for(int x = 0;x < result.length;x ++){ System.out.println(result[x]); } } }
输出1:
hello
world
hello
mldn
以上是关于字符串拆分的主要内容,如果未能解决你的问题,请参考以下文章
为啥将拆分为 wav 文件的旋律转换为拆分的 mp3 会在片段边界处产生不好的声音?