strEndsWith(text,toFind,ignoreCase)¶
Definition¶
Boolean strEndsWith(String text, String toFind, Boolean ignoreCase)
Description¶
Returns true if text ends with toFind, false otherwise.
Parameter Definition¶
| Name | Type | Description |
|---|---|---|
| text | String | The base string to text |
| toFind | String | the substring to find at start of text |
| ignoreCase | Boolean | Should the text be case sensitive |