join"
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 join(Object[] value, String separator); | |
</source> | </source> | ||
− | :i.e., <javadoc method=" | + | :i.e., <javadoc method="join(java.lang.Object[], java.lang.String)">org.zkoss.xel.fn.StringFns</javadoc> |
− | + | Joins the given array of values into a string and separated with the given separator | |
'''Parameters:''' | '''Parameters:''' | ||
− | * value - the | + | * value - the array of values to join (if any of its elements is not a string, it will be converted to a string first) |
+ | * separator - the separator | ||
=Version History= | =Version History= |
Latest revision as of 08:08, 8 March 2011
String join(Object[] value, String separator);
Joins the given array of values into a string and separated with the given separator
Parameters:
- value - the array of values to join (if any of its elements is not a string, it will be converted to a string first)
- separator - the separator
Version History
Version | Date | Content |
---|---|---|
5.0.7 | March, 2011 | This method was introduced |