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' ) True StartsWith( 'JAPAN' , 'X' ) False StartsWith( 10066 , 100 ) True StartsWith( 10066 , 1 ) True StartsWith( 10666 , 7 ) False |
Related Functions