You are viewing an older version of the site. Click here to view
the latest version of this page. (This may be a dead link, if so, try the root page of the docs
here.)
== string_ends_with ==
[[../../Optimizer#CACHE_RETURN|CACHE_RETURN]]
[[../../Optimizer#NO_SIDE_EFFECTS|NO_SIDE_EFFECTS]] |} === Usages ===
Copy Code
The output would be:
Copy Code
The output would be:
Determines if the provided teststring ends with the provided keyword. Note that this will cast both arguments to strings. This means that the boolean true will match the string 'true' or the integer 1 will match the string '1'. If an empty string is provided for the keyword, it will always return true.
=== Vital Info ===
{| style="width: 40%;" cellspacing="1" cellpadding="1" border="1" class="wikitable"
|-
! scope="col" width="20%" |
! scope="col" width="80%" |
|-
! scope="row" | Name
| string_ends_with
|-
! scope="row" | Returns
| boolean
|-
! scope="row" | Usages
| teststring, keyword
|-
! scope="row" | Throws
| [[../objects/ms.lang.NullPointerException|ms.lang.NullPointerException]]
|-
! scope="row" | Since
| 3.3.2
|-
! scope="row" | Restricted
| No
|-
! scope="row" | Optimizations
| [[../../Optimizer#CONSTANT_OFFLINE|CONSTANT_OFFLINE]] [[../../Optimizer#CACHE_RETURN|CACHE_RETURN]]
[[../../Optimizer#NO_SIDE_EFFECTS|NO_SIDE_EFFECTS]] |} === Usages ===
string_ends_with(teststring, keyword)=== Examples === ====Example 1==== Basic usage Given the following code:
string_ends_with('[ERROR] Bad message here!!', '!')

1 {{function|string_ends_with}}('[ERROR] Bad message here!!', '!')
:true====Example 2==== Basic usage Given the following code:
string_ends_with('Spaghetti and cheese', 'Spaghetti')

1 {{function|string_ends_with}}('Spaghetti and cheese', 'Spaghetti')
:false===See Also===
[[API/functions/string_starts_with.html|string_starts_with]]
Find a bug in this page? Edit this page yourself, then submit a pull request. (Note this page is automatically generated from the documentation in the source code.)