Starts with: Difference between revisions
Jump to navigation
Jump to search
Created page with "<onlyinclude>{{{{{format|Function2}}} |name=starts_with |function1.return_type=boolean |function1.description=Checks whether a string starts with a prefix string. (case-sensit..." |
(No difference)
|
Latest revision as of 12:12, 23 December 2020
Function Syntax
boolean starts_with( string value, string prefix )
- Checks whether a string starts with a prefix string. (case-sensitive)
- value: String to check
- prefix: Prefix to search for
This function was added in r17911.
Code Samples
The following function call will return true:
starts_with( "The quick brown fox jumps over the lazy dog", "The quick" );