This Example describes the way to match the String using regular expression. For this we are going to make program named Matching_Casesensitive.java. The steps involved in program Matching_Casesensitive.java are described below:-
String regex="^java":-Defining regression as string. Here (^java) means all the words which are named as java .
Pattern.CASE_INSENSITIVE| Pattern.MULTILINE:-This enables the pattern to match case insensitive. The word can either be in caps or not.
Matching_Casesensitive.java
|
Output of the program:-
| Words from the Text is:- java has classes Java has methods JAVA have regular expressions Regular expressions are in Java ======================== Finded words from the Text is:- java Java JAVA |
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: Match string using regular expression without Case sensitivity
Post your Comment