In this section, you will get the detailed explanation about the
regionMatches() method of
String class. We are going to use regionMatches() method of String class in Java. The description of the code is given below for the usage of the method.
Description of the code:
As shown in the example a substring of the specified string object is compared to a substring of the other. If these substrings contain same characters sequence then we get true as output i.e. if the specified subregion of the string matches the subregion of the string argument; otherwise we get false. The substring to be compared begins at index toffset and has length len and that of other substring to be compared begins at index ooffset and has length len.
Therefore, in the program code given below the characters from 20 through 28 in str1 match characters 25 through 33 in str2 and give true as output.
However if one of the following is true then only we get false as an output:
Here is the code of the program:
|
Output of the program:
| C:\unique>javac matchstr.java C:\unique>java matchstr true C:\unique> |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: String regionMatches() View All Comments
Post your Comment