Open In App

Scala String startsWith(String prefix) method with example

Last Updated : 29 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The startsWith(String prefix) method is utilized to check if the stated string starts with the prefix or not that is being specified by us.
Method Definition: Boolean startsWith(String prefix) Return Type: It returns true if the string starts with the specified prefix else it returns false.
Example: 1#
Output:
true
Example: 2#
Output:
false

Next Article

Similar Reads