startsWith( ) and endsWith( ) in Java

By: Mashoud  

String defines two routines that are, more or less, specialized forms of regionMatches(). The startsWith( ) method determines whether a given String begins with a specified string. Conversely, endsWith( ) determines whether the String in question ends with a specified string. They have the following general forms:

boolean startsWith(String str)
boolean endsWith(String str)

Here, str is the String being tested. If the string matches, true is returned. Otherwise, false is returned. For example,

"Foobar".endsWith("bar")

and

"Foobar".startsWith("Foo") are both true.

A second form of startsWith( ), shown here, lets you specify a starting point:

boolean startsWith(String str, int startIndex)

Here, startIndex specifies the index into the invoking string at which point the search will begin. For example,

"Foobar".startsWith("bar", 3) returns true.




Archived Comments

1. retarded
View Tutorial          By: retardedjavasamplestutorials at 2017-02-26 02:16:10

2. sd'
View Tutorial          By: ace at 2017-01-25 01:23:32

3. Brief, and to the point.
I like it!

View Tutorial          By: Sam at 2015-11-09 03:13:42

4. hai, thanks !
:)

View Tutorial          By: moke at 2012-05-09 04:09:18

5. How to use it
View Tutorial          By: Ted at 2011-12-23 07:23:20


Most Viewed Articles (in Java )

Latest Articles (in Java)

Comment on this tutorial