lastIndexOf"
From Documentation
(Created page with "{{ZUMLReferencePageHeader}} <source lang="java"> BigDecimal decimal(Object value); </source> :i.e., <javadoc method="toDecimal(java.lang.Object)">org.zkoss.xel.fn.CommonFns</ja...") |
|||
Line 2: | Line 2: | ||
<source lang="java"> | <source lang="java"> | ||
− | + | String[] split(String value, String regex); | |
</source> | </source> | ||
− | :i.e., <javadoc method=" | + | :i.e., <javadoc method="split(java.lang.String, java.lang.String)">org.zkoss.xel.fn.StringFns</javadoc> |
− | + | Splits this string around matches of the given regular expression. | |
'''Parameters:''' | '''Parameters:''' | ||
− | * value - the value to | + | * value - the value to split |
+ | * regex - the delimiting regular expression, such as <code>";"</code> and <code>"[,;]"</code>. | ||
=Version History= | =Version History= |
Revision as of 08:05, 8 March 2011
String[] split(String value, String regex);
Splits this string around matches of the given regular expression.
Parameters:
- value - the value to split
- regex - the delimiting regular expression, such as
";"
and"[,;]"
.
Version History
Version | Date | Content |
---|---|---|
5.0.7 | March, 2011 | This method was introduced |