-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotes6.java
75 lines (58 loc) · 3.98 KB
/
Notes6.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TOPICS :: Regular Expression, Pattern matching
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Notes6 {
public static void main(String[] args) {
/*
Regular Expression ::
A regular expression is a sequence of characters that forms a search pattern. When you search for data in a
text, you can use this search pattern to describe what you are searching for.
Regular expressions can be used to perform all types of text search and text replace operations.
we can import the 'java.util.regex' package to work with regular expressions. The package includes the following classes:
> Pattern Class - Defines a pattern (to be used in a search)
> Matcher Class - Used to search for the pattern
> PatternSyntaxException Class - Indicates syntax error in a regular expression pattern
First, the pattern is created using the Pattern.compile() method. The first parameter indicates which
pattern is being searched for and the second parameter has a flag to indicates that the search should be
case-insensitive. The second parameter is optional.
The matcher() method is used to search for the pattern in a string. It returns a Matcher object which
contains information about the search that was performed.
The find() method returns true if the pattern was found in the string and false if it was not found.
Flags in the compile() method change how the search is performed. Here are a few of them:
> Pattern.CASE_INSENSITIVE - The case of letters will be ignored when performing a search.
> Pattern.LITERAL - Special characters in the pattern will not have any special meaning and will be treated
as ordinary characters when performing a search.
> Pattern.UNICODE_CASE - Use it together with the CASE_INSENSITIVE flag to also ignore the case of letters outside of the English alphabet
// for first parameter of Pattern.compile() >>
Expression Description
[abc] Find one character from the options between the brackets
[^abc] Find one character NOT between the brackets
[0-9] Find one character from the range 0 to 9
Metacharacter Description
| Find a match for any one of the patterns separated by | as in: cat|dog|fish
. Find just one instance of any character
^ Finds a match as the beginning of a string as in: ^Hello
$ Finds a match at the end of the string as in: World$
\d Find a digit
\s Find a whitespace character
\b Find a match at the beginning of a word like this: \bWORD, or at the end of a word like
this: WORD\b
Quantifier Description
n+ Matches any string that contains at least one n
n* Matches any string that contains zero or more occurrences of n
n? Matches any string that contains zero or one occurrences of n
n{x} Matches any string that contains a sequence of X n's
n{x,y} Matches any string that contains a sequence of X to Y n's
n{x,} Matches any string that contains a sequence of at least X n's
*/
Pattern pattern = Pattern.compile("dsr", Pattern.CASE_INSENSITIVE);
Matcher matcher = pattern.matcher("It's DsR here!!");
boolean matchFound = matcher.find();
if(matchFound) System.out.println("Match found"); //Output > Match found
else System.out.println("Match not found");
}
}