startsWith
startsWith() Function
• Introduced in version 1.3b49
Usage
[h: result = startsWith(string, substring)]
Returns 1 (true) if the string starts with a certain substring and 0 (false) if not.
Examples
[r: startsWith("Test", "T")]
[r: startsWith("Test", "Te")]
[r: startsWith("Test", "Tez")]
Returns
1 10