The Pattern has some static methods such as matcher which allow us to match a regex against a string from its start till its end , and quote which allow us to quote or escape a regex String . This … Read More
Category: regex
Regex in java , part one , The Pattern class
What is a regex ?
Regex stands for regular expression . it is a string which is formed of characters used to perform :
- searching
- replacing
- validation
in other string. In addition to the regular characters that a regex can … Read More