lastIndexOf"

From Documentation
m
m
 
Line 2: Line 2:
  
 
<source lang="java">
 
<source lang="java">
String[] split(String value, String regex);
+
int lastIndexOf(Object value, Object element);
 
</source>
 
</source>
  
:i.e., <javadoc method="split(java.lang.String, java.lang.String)">org.zkoss.xel.fn.StringFns</javadoc>
+
:i.e., <javadoc method="lastIndexOf(java.lang.Object, java.lang.Object)">org.zkoss.xel.fn.CommonFns</javadoc>
  
Splits this string around matches of the given regular expression.
+
Returns the index within the value of the last occurrence of the specified element.
  
 
'''Parameters:'''
 
'''Parameters:'''
* value - the value to split
+
* value - the value to test. If it is an instance of String, String.lastIndexOf() is called. If it is a list or an array, all of its elements are examined one-by-one. It does not support Collection and Map.
* regex - the delimiting regular expression, such as <code>";"</code> and <code>"[,;]"</code>.
+
* element - the element to test.
  
 
=Version History=
 
=Version History=

Latest revision as of 08:15, 8 March 2011

int lastIndexOf(Object value, Object element);
i.e., CommonFns.lastIndexOf(Object, Object)

Returns the index within the value of the last occurrence of the specified element.

Parameters:

  • value - the value to test. If it is an instance of String, String.lastIndexOf() is called. If it is a list or an array, all of its elements are examined one-by-one. It does not support Collection and Map.
  • element - the element to test.

Version History

Last Update : 2011/03/08


Version Date Content
5.0.7 March, 2011 This method was introduced



Last Update : 2011/03/08

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