String.Starts¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
The string to check. | String |
||
Output ➡️ |
True if the input string starts with the string specified, false otherwise. | Bool |
||
With |
No | The string that the input needs to start with to output true. | `` | String Var(String) |
This shard checks if the input string starts 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 left to right. Eg. "Hello World" and "Hello2 World" will both return true if "Hello" is checked for. "2Hello World" however will return false.