例如:
String address = new String("192.168.13.240");
String[] str = address.split("\\.");
for(String s : str){
System.out.println(s);
}
System.out.println("@2@3@".split("@",-1)); //[ , 2, 3, ]
System.out.println("@2@3@".split("@",0)); //[ , 2, 3]
System.out.println("@2@3@".split("@",2)); //[ , 2@3@]
System.out.println("@2@3@".split("@",3)); //[ , 2, 3@]
System.out.println("@2@3@".split("@",4)); //[ , 2, 3, ]
System.out.println("@2@3@".split("@",5)); //[ , 2, 3, ]
1、定义和用法
根据匹配给定的正则表达式来拆分字符串。
2、调用语法
String[] split(String regex)
String[] split(String regex, int limit)
3、参数说明
参数 | 描述 |
regex | 匹配此字符串的正则表达式 |
limit | 限制拆分数 |
4、返回值
字符串数组。