StartsWith
Summary
The StartsWith function determines if the lookup character matches the first n characters in a string.
Syntax
StartsWith(<input String or Numeric or Date/time>, <lookup char>) |
Return Type
Boolean
Details
The StartsWith function is case sensitive and returns True or False.
Examples
StartsWith('JAPAN', 'J')TrueStartsWith('JAPAN', 'X')FalseStartsWith(10066, 100)TrueStartsWith(10066, 1)TrueStartsWith(10666, 7)False |
Related Functions
