strLastIndexOf(text,toFind,last,ignoreCase)¶
Definition¶
Integer strLastIndexOf(String text, String toFind, Integer last, Boolean ignoreCase)
Description¶
Returns the 0 based index of toFind within the text ending at last, with the option to ignore case. If toFind does not exist in text, return -1.
Parameter Definition¶
Name | Type | Description |
---|---|---|
text | String | The base string to to find substring from |
toFind | String | the substring to find |
last | Integer | the char to start looking at, null indicates from end |
ignoreCase | Boolean | true indicates it should case insensitive match |