startsWith(str: String, refStr: String);
str. Base string.
refStr. Substring.
The startsWith method determines whether string starts with the specified substring.
This method returns True if the string starts with the specified substring, otherwise it returns False.
The example of use is given in the with description of the PP.endsWith static method.
See also: