打造国内最大的IC交易平台
技术资料 行业资讯 PDF资料 IC价格 IC替换 缩略语 IC供应 IC采购
很基础的问题,刚开始学习,关于AXD Debugger的000159错误提示,如何处理?
类别:网文精粹  
 
split:

public String[] split(String regex)

Splits this string around matches of the given regular expression.

This method works as if by invoking the two-argument split method with the given expression and a limit argument of zero. Trailing empty strings are therefore not included in the resulting array.

The string "boo:and:foo ", for example, yields the following results with these expressions:

Regex Result

: { "boo ", "and ", "foo " }

o { "b ", " ", ":and:f " }

Parameters:

regex - the delimiting regular expression

Returns:

the array of strings computed by splitting this string around matches of the given regular expression

Throws:

PatternSyntaxException - if the regular expression 's syntax is invalid