Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns True if the first argument string starts with the second argument string; otherwise returns False.
booleanstarts-with(string, string)
Parameters
- string
A string. - string
A string.
Return Values
Returns True if the first argument string starts with the second argument string; otherwise returns False.
Remarks
If an argument is not of type string, it is first converted to a string and then evaluated.
The following function call returns True.
starts-with("mysampletest", "mysample")
Requirements
None.
See Also
Send Feedback on this topic to the authors