Skip to content

String.Ends

Name Mandatory Description Default Type
⬅️ Input The string to check. String
Output ➡️ True if the input string ends with the string specified, false otherwise. Bool
With No The string that the input needs to end with to output true. `` StringVar(String)

This shard checks if the input string ends with the string specified in the With parameter. If the input string does contain the string specified, the shard will output true. Otherwise, it will output false.

Details

The shard parses the input string from the right to left. Eg. "HelloWorld" and "Hello World" will both return true if "World" is checked for. "Hello World2" however will return false.