String学习
Posted fish in the sea
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String学习相关的知识,希望对你有一定的参考价值。
String[] split(String regex,int limit)
Splits this string around matches of the given regular expression.
split 方法
将一个字符串分割为子字符串,然后将结果作为字符串数组返回。
stringObj.split([separator,[limit]])
stringObj
必选项。要被分解的 String 对象或文字。该对象不会被 split 方法修改。
separator
可选项。字符串或 正则表达式 对象,它标识了分隔字符串时使用的是一个还是多个字符。如果忽
略该选项,返回包含整个字符串的单一元素数组。
limit
可选项。该值用来限制返回数组中的元素个数。
说明:
split 方法的结果是一个字符串数组,在 stingObj 中每个出现 separator 的位置都要进行分解
。separator 不作为任何数组元素的部分返回。
static String format(String format,Object ````)
Returns a formatted string using the specified format string and arguments.
以上是关于String学习的主要内容,如果未能解决你的问题,请参考以下文章