split"
From Documentation
m |
|||
Line 7: | Line 7: | ||
:i.e., <javadoc method="split(java.lang.String, java.lang.String)">org.zkoss.xel.fn.StringFns</javadoc> | :i.e., <javadoc method="split(java.lang.String, java.lang.String)">org.zkoss.xel.fn.StringFns</javadoc> | ||
− | Splits this string | + | Splits this string to match the given regular expression. |
'''Parameters:''' | '''Parameters:''' |
Latest revision as of 06:49, 3 August 2011
String[] split(String value, String regex);
Splits this string to match 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 |