VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-string-startswithstring-prefix-int-toffset-method-with-example/

⇱ Scala String startsWith(String prefix, int toffset) method with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala String startsWith(String prefix, int toffset) method with example

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

Explore