split"

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...")
 
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
  
 
<source lang="java">
 
<source lang="java">
BigDecimal decimal(Object value);
+
String[] split(String value, String regex);
 
</source>
 
</source>
  
:i.e., <javadoc method="toDecimal(java.lang.Object)">org.zkoss.xel.fn.CommonFns</javadoc>
+
:i.e., <javadoc method="split(java.lang.String, java.lang.String)">org.zkoss.xel.fn.StringFns</javadoc>
  
Converts the specified object to a big decimal.
+
Splits this string to match the given regular expression.
  
 
'''Parameters:'''
 
'''Parameters:'''
* value - the value to convert
+
* value - the value to split
 +
* regex - the delimiting regular expression, such as <code>";"</code> and <code>"[,;]"</code>.
  
 
=Version History=
 
=Version History=

Latest revision as of 06:49, 3 August 2011

String[] split(String value, String regex);
i.e., StringFns.split(String, String)

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

Last Update : 2011/08/03


Version Date Content
5.0.7 March, 2011 This method was introduced



Last Update : 2011/08/03

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.