将字符串拆分成一个数组。
String[] split- 语法
public String[] split(String regex, int limit)
这是参数的详细信息-
regex - 定界的正则表达式。
limit - 输出阈值,这意味着要返回多少个字符串。
String[] split - 返回值
它返回通过将字符串拆分为字符串数组。
String[] split - 示例
import java.io.*; public class Test { public static void main(String args[]) { String Str=new String("Welcome-to-Learnfk.com"); System.out.println("返回值 :" ); for (String retval: Str.split("-", 2)) { System.out.println(retval); } System.out.println(""); System.out.println("返回值 :" ); for (String retval: Str.split("-", 3)) { System.out.println(retval); } System.out.println(""); System.out.println("返回值 :" ); for (String retval: Str.split("-", 0)) { System.out.println(retval); } System.out.println(""); } }
这将产生以下输出-
返回值 : Welcome to-Learnfk.com 返回值 : Welcome to Learnfk.com 返回值: Welcome to Learnfk.com
参考链接
https://www.learnfk.com/java/java-string-split-regexlimit.html
标签:regex,Java,String,System,split,println,返回值,out From: https://blog.51cto.com/u_14033984/8861418