int lastIndexOf(Object value, Object element);

i.e.,

org.zkoss.xel.fn.CommonFns

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

Version Date Content
5.0.7 March, 2011 This method was introduced