Use this function to check if a string ends with a specific fragment. A true or false value is returned as output.
This function performs a case insensitive check.
Arguments
For more information on arguments, see the table below.
Argument | Type | Description |
---|---|---|
Text | Required | The text to examine in search of the Fragment . |
Fragment | Required | The text to search for in Text . |
Examples
EndsWith("Blueberry”, "blue")
: FalseEndsWith("Blueberry”, "Berry")
: TrueEndsWith("Blueberry”, "Raspberry")
: FalseEndsWith("My favorite jam is Apricot”, "Apricot")
: TrueEndsWith("example@uipath.com”, "@uipath.com")
: True
Updated about a year ago