{"id":124,"date":"2019-01-20T06:31:26","date_gmt":"2019-01-20T06:31:26","guid":{"rendered":"https:\/\/www.kindsonthegenius.com\/java\/?p=124"},"modified":"2019-03-02T04:37:49","modified_gmt":"2019-03-02T04:37:49","slug":"20-java-regular-expressions","status":"publish","type":"post","link":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/","title":{"rendered":"Java &#8211; Regular Expressions &#8211; 1"},"content":{"rendered":"<p>We are going to learn about\u00a0 Regular expressions in Java under the following topics:<\/p>\n<ol>\n<li><a href=\"#t1\">Introduction to Regular expressions<\/a><\/li>\n<li><a href=\"#t2\">Useful Classes in Regular Expressions<\/a><\/li>\n<li><a href=\"#t3\">Syntax of Regular Expressions<\/a><\/li>\n<li><a href=\"#t4\">Matcher Classes in Regular Expressions<\/a><\/li>\n<li><a href=\"#t5\">Demo of Regular Expressions<\/a><\/li>\n<li><a href=\"#t6\">Watch the Video<\/a><\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h4><strong id=\"t1\">1. Introduction to Regular Expressions<\/strong><\/h4>\n<p>A regular expression is a special sequence of characters. Its also known as <strong>regex<\/strong>. You can use them to represent patterns in a text. Moreover, you can also used them to perform other operations. These includes: searching for particular pattern in a text or replacing occurrence of certain string.<\/p>\n<p>For example, you may want to search for phone numbers inside several pages of text. Regular expression comes to the rescue in cases like this.<\/p>\n<p>In Java, we have three classes used to work with regular expressions. This classes are available in java.util.regex package. They are Pattern, Matcher and PatternSyntaxException classes. Let&#8217;s now discuss each of them.<\/p>\n<p>&nbsp;<\/p>\n<h4><strong id=\"t2\">2. Useful Classes in Regular Expressions<\/strong><\/h4>\n<p>There are three of such classes. We would consider them in this section. They are:<\/p>\n<ul>\n<li>Pattern Class<\/li>\n<li>Matcher Class<\/li>\n<li>PatternSyntaxException Class<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><strong>Pattern Class<\/strong><\/p>\n<p>So you can create a Pattern object from a pattern class. Hence,\u00a0 pattern object represents a particular regular expression. However, the Pattern class has not public constructors. As such, you cannot just create a Pattern object using new keyword.<\/p>\n<p>How then can you create a pattern object?<\/p>\n<p>You can do this by calling its static compile method(). This method accepts a regular expression as parameter and returns a Pattern object.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Matcher Class<\/strong><\/p>\n<p>Next class in the package is the Matcher class. The Matcher class helps you to match a string against a pattern. Just like the Pattern class, there are no public constructor in the Matcher class. However, you can create a Matcher object by calling the match() method of the Pattern object. Then you pass it the string\u00a0 you want to match.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>PatternSyntaxException<\/strong><\/p>\n<p>A PatternSyntaxException object is an exception that occurs if there is error in the regular expression<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h4><strong id=\"t3\">3. Syntax of Regular Expressions<\/strong><\/h4>\n<p>So we are going to separate the syntax into categories. This is because there are quite a number of different expressions to use.<\/p>\n<p><strong>(a) Matching Characters<\/strong><\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>Expression<\/th>\n<th>Matches<\/th>\n<\/tr>\n<tr>\n<td class=\"ts\">.<\/td>\n<td>\u00a0Any character except newline.<\/td>\n<\/tr>\n<tr>\n<td>\\w<\/td>\n<td>Word character (a-z, A-Z, 0-9, _)<\/td>\n<\/tr>\n<tr>\n<td>\\W<\/td>\n<td>Not a word character<\/td>\n<\/tr>\n<tr>\n<td>\\s<\/td>\n<td>Whitespaced character.\u00a0 Same as to [\\t\\n\\r\\f].<\/td>\n<\/tr>\n<tr>\n<td>\\S<\/td>\n<td>Non-whitespace.<\/td>\n<\/tr>\n<tr>\n<td>\\d<\/td>\n<td>Any digit. Same as to [0-9].<\/td>\n<\/tr>\n<tr>\n<td>\\D<\/td>\n<td>Nondigits.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p><strong>(b) Matching Boundaries<\/strong><\/p>\n<p>So we provide a list of regular expressions that matches any boundaries.<\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>Subexpression<\/th>\n<th>Matches<\/th>\n<\/tr>\n<tr>\n<td>^<\/td>\n<td>Beginning of a string<\/td>\n<\/tr>\n<tr>\n<td>$<\/td>\n<td>End of a string<\/td>\n<\/tr>\n<tr>\n<td>\\b<\/td>\n<td>Word boundary<\/td>\n<\/tr>\n<tr>\n<td>\\B<\/td>\n<td>Non word boundaries.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p><strong>(c) Groups<\/strong><\/p>\n<p>To work with groups you use braces. So the list is provided below.<\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>Expression<\/th>\n<th>Matches<\/th>\n<\/tr>\n<tr>\n<td>[&#8230;]<\/td>\n<td>Any single character in brackets.<\/td>\n<\/tr>\n<tr>\n<td>[^&#8230;]<\/td>\n<td>Any single character not in brackets.<\/td>\n<\/tr>\n<tr>\n<td>a| b<\/td>\n<td>Matches either a or b.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">(re)<\/td>\n<td>Groups regular expressions enclosed in brackets.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p><strong>(d) Quantifiers<\/strong><\/p>\n<p>Now we consider quantifiers. You use them to match more than one character at a time. Find the list below.<\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>Expression<\/th>\n<th>Matches<\/th>\n<\/tr>\n<tr>\n<td class=\"ts\">*<\/td>\n<td>0 or more occurrences of the preceding expression.<\/td>\n<\/tr>\n<tr>\n<td>+<\/td>\n<td>1 or more of the previous thing.<\/td>\n<\/tr>\n<tr>\n<td>?<\/td>\n<td>0 or 1 occurrence of the preceding expression.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">{ n}<\/td>\n<td>Exactly n number of occurrences of the preceding expression.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">{ n,}<\/td>\n<td>n or more occurrences of the preceding expression.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">{ n, m}<\/td>\n<td>Range of numbers. Minimum of n and maximum of m<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p>Furthermore note that metacharacters must be escaped. Metacharacters include the following:<\/p>\n<p>. [ { ( ) \\ ^ $ | ? * +<\/p>\n<p>You escape a metacharacter by preceding it with a backslash (\\)<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h4><strong id=\"t4\">4. Matcher Class Methods<\/strong><\/h4>\n<p>You can use the methods provided by the Matcher class to perform certain operations. So there are three categories of method we would discuss. They are:<\/p>\n<ul>\n<li>Index Methods<\/li>\n<li>Verifier Methods<\/li>\n<li>Replacement Methods<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><strong>The index methods<\/strong><\/p>\n<p>You use the index methods to get where a match was found. It provides the index position of the match. Returns an integer<\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>SN<\/th>\n<th>Method name description<\/th>\n<\/tr>\n<tr>\n<td class=\"ts\">1<\/td>\n<td><b>start()<\/b><\/p>\n<p>This method returns the start index of the previous match.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">2<\/td>\n<td><b>start(int group)<\/b><\/p>\n<p>Gives the start index of the subsequence captured by the given group during the previous operation.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">3<\/td>\n<td><b>end()<\/b><\/p>\n<p>Gives the offset after the last character matched.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">4<\/td>\n<td><b>end(int group)<\/b><\/p>\n<p>Gives the offset after the last character of the subsequence captured by the given group during the previous operation.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p><strong>Verifier Methods<\/strong><\/p>\n<p>So the verifier methods are used to check an input string to verify if a patter is found. Hence, it returns true if the pattern is found. Otherwise, it returns false. Find the list below.<\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>SN<\/th>\n<th>Method name and description<\/th>\n<\/tr>\n<tr>\n<td class=\"ts\">1<\/td>\n<td><b>lookingAt()<\/b><\/p>\n<p>Tries to match the input sequence, starting at the beginning of the region, against the pattern.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">2<\/td>\n<td><b>find()<\/b><\/p>\n<p>Tries to find the next subsequence of the input sequence that matches the pattern.\u00a0Returns true if it finds a match. Otherwise return false.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">3<\/td>\n<td><b>find(int start)<\/b><\/p>\n<p>Resets this matcher and then tries to find the next subsequence of the input sequence that matches the pattern, starting at the given index. Returns true if there is a match. Otherwise return false.<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">4<\/td>\n<td><b>matches()<\/b><\/p>\n<p>Tries to match the entire region against the pattern. Returns true if\u00a0 it finds a match. Else it returns false.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p><strong>Replacement Methods<\/strong><\/p>\n<p>This methods are used to replace matching text in the input string. Find the list below<\/p>\n<table class=\"table table-bordered\" align=\"center\">\n<tbody>\n<tr style=\"background-color: #f7f6f3;\">\n<th>SN<\/th>\n<th>Method &amp; brief description<\/th>\n<\/tr>\n<tr>\n<td class=\"ts\">1<\/td>\n<td><b>Matcher appendReplacement(StringBuffer sb, String replacement)<\/b><\/p>\n<p>Implements a non-terminal append-and-replace step. Returns a Matcher<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">2<\/td>\n<td><b>StringBuffer appendTail(StringBuffer sb)<\/b><\/p>\n<p>Implements a terminal append-and-replace step. Returns a StringBuffer<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">3<\/td>\n<td><b>String replaceAll(String replacement)<\/b><\/p>\n<p>Replaces every subsequence of the input sequence that matches the pattern with the given replacement string. Then returns the new string<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">4<\/td>\n<td><b>String replaceFirst(String replacement)<\/b><\/p>\n<p>Replaces the first subsequence of the input sequence that matches the pattern with the given replacement string. The returns the new string<\/td>\n<\/tr>\n<tr>\n<td class=\"ts\">5<\/td>\n<td><b>static String quoteReplacement(String s)<\/b><\/p>\n<p>Returns a replacement String for the specified String. This method produces a String that will work as a literal replacement\u00a0<b>s<\/b>in the appendReplacement method of the Matcher class.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h4><strong id=\"t5\">5. Demo of Regular Expressions<\/strong><\/h4>\n<p>Let&#8217;s now apply what we&#8217;ve learnt so far.<\/p>\n<p>We would\u00a0 write a regular expression that finds all 3 digit numbers in an input string<\/p>\n<p>&nbsp;<\/p>\n<pre style=\"margin: 0; line-height: 125%;\"><span style=\"color: #008800; font-weight: bold;\">import<\/span> <span style=\"color: #0e84b5; font-weight: bold;\">java.util.regex.Matcher<\/span><span style=\"color: #333333;\">;<\/span>\r\n<span style=\"color: #008800; font-weight: bold;\">import<\/span> <span style=\"color: #0e84b5; font-weight: bold;\">java.util.regex.Pattern<\/span><span style=\"color: #333333;\">;<\/span>\r\n\r\n<span style=\"color: #008800; font-weight: bold;\">public<\/span> <span style=\"color: #008800; font-weight: bold;\">class<\/span> <span style=\"color: #bb0066; font-weight: bold;\">RegexDeom<\/span> <span style=\"color: #333333;\">{<\/span>\r\n\r\n\t<span style=\"color: #008800; font-weight: bold;\">public<\/span> <span style=\"color: #008800; font-weight: bold;\">static<\/span> <span style=\"color: #333399; font-weight: bold;\">void<\/span> <span style=\"color: #0066bb; font-weight: bold;\">main<\/span><span style=\"color: #333333;\">(<\/span>String<span style=\"color: #333333;\">[]<\/span> args<span style=\"color: #333333;\">)<\/span> <span style=\"color: #333333;\">{<\/span>\r\n\t\tPattern pt <span style=\"color: #333333;\">=<\/span> Pattern<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">compile<\/span><span style=\"color: #333333;\">(<\/span><span style=\"background-color: #fff0f0;\">\"\\\\d{3}\"<\/span><span style=\"color: #333333;\">);<\/span>\r\n\t\t\r\n\t\tString text <span style=\"color: #333333;\">=<\/span> <span style=\"background-color: #fff0f0;\">\"23 becomes 230 if you add 0 \"<\/span> <span style=\"color: #333333;\">+<\/span>\r\n\t\t<span style=\"background-color: #fff0f0;\">\"but its not same as 544 be it becomed 3\"<\/span><span style=\"color: #333333;\">;<\/span>\r\n\t\t\r\n\t\tMatcher mt <span style=\"color: #333333;\">=<\/span> pt<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">matcher<\/span><span style=\"color: #333333;\">(<\/span>text<span style=\"color: #333333;\">);<\/span>\r\n\t\t\r\n\t\t<span style=\"color: #333399; font-weight: bold;\">int<\/span> count <span style=\"color: #333333;\">=<\/span> <span style=\"color: #0000dd; font-weight: bold;\">0<\/span><span style=\"color: #333333;\">;<\/span>\t\t\r\n\t\t<span style=\"color: #008800; font-weight: bold;\">while<\/span><span style=\"color: #333333;\">(<\/span>mt<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">find<\/span><span style=\"color: #333333;\">())<\/span> <span style=\"color: #333333;\">{<\/span>\r\n\t\t\tcount <span style=\"color: #333333;\">=<\/span> count<span style=\"color: #333333;\">+<\/span> <span style=\"color: #0000dd; font-weight: bold;\">1<\/span><span style=\"color: #333333;\">;<\/span>\r\n\t\t<span style=\"color: #333333;\">}<\/span>\t\t\r\n\t\tSystem<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">out<\/span><span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">println<\/span><span style=\"color: #333333;\">(<\/span>count<span style=\"color: #333333;\">);<\/span>\t\t\r\n\t<span style=\"color: #333333;\">}<\/span>\r\n<span style=\"color: #333333;\">}<\/span>\r\n<\/pre>\n<h4><a href=\"https:\/\/www.youtube.com\/watch?v=sCuOJ8uadOg\"><strong id=\"t6\">6. Watch the Video<\/strong><\/a><\/h4>\n<p><iframe loading=\"lazy\" src=\"https:\/\/www.youtube.com\/embed\/sCuOJ8uadOg\" width=\"100%\" height=\"500px\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span><\/iframe><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We are going to learn about\u00a0 Regular expressions in Java under the following topics: Introduction to Regular expressions Useful Classes in Regular Expressions Syntax of &hellip; <\/p>\n","protected":false},"author":395,"featured_media":127,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-124","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Java - Regular Expressions - 1 - Java Tutorials<\/title>\n<meta name=\"description\" content=\"In this lesson, we are going to learn about regular expressions in Java. We would learn how to use Pattern and Matcher classes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java - Regular Expressions - 1 - Java Tutorials\" \/>\n<meta property=\"og:description\" content=\"In this lesson, we are going to learn about regular expressions in Java. We would learn how to use Pattern and Matcher classes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/\" \/>\n<meta property=\"og:site_name\" content=\"Java Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-20T06:31:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-03-02T04:37:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Regular-Expressions-in-Java.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"950\" \/>\n\t<meta property=\"og:image:height\" content=\"518\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"kindsonthegenius\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kindsonthegenius\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/\"},\"author\":{\"name\":\"kindsonthegenius\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#\\\/schema\\\/person\\\/63a68934672db675ff0cd80d066510c2\"},\"headline\":\"Java &#8211; Regular Expressions &#8211; 1\",\"datePublished\":\"2019-01-20T06:31:26+00:00\",\"dateModified\":\"2019-03-02T04:37:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/\"},\"wordCount\":1024,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Regular-Expressions-in-Java.jpg\",\"articleSection\":[\"Java Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/\",\"name\":\"Java - Regular Expressions - 1 - Java Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Regular-Expressions-in-Java.jpg\",\"datePublished\":\"2019-01-20T06:31:26+00:00\",\"dateModified\":\"2019-03-02T04:37:49+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#\\\/schema\\\/person\\\/63a68934672db675ff0cd80d066510c2\"},\"description\":\"In this lesson, we are going to learn about regular expressions in Java. We would learn how to use Pattern and Matcher classes.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Regular-Expressions-in-Java.jpg\",\"contentUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Regular-Expressions-in-Java.jpg\",\"width\":950,\"height\":518,\"caption\":\"Regular Expressions in Java\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/20-java-regular-expressions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java &#8211; Regular Expressions &#8211; 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#website\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/\",\"name\":\"Java Tutorials\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#\\\/schema\\\/person\\\/63a68934672db675ff0cd80d066510c2\",\"name\":\"kindsonthegenius\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g\",\"caption\":\"kindsonthegenius\"},\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/author\\\/kindsonthegenius-2\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Java - Regular Expressions - 1 - Java Tutorials","description":"In this lesson, we are going to learn about regular expressions in Java. We would learn how to use Pattern and Matcher classes.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/","og_locale":"en_US","og_type":"article","og_title":"Java - Regular Expressions - 1 - Java Tutorials","og_description":"In this lesson, we are going to learn about regular expressions in Java. We would learn how to use Pattern and Matcher classes.","og_url":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/","og_site_name":"Java Tutorials","article_published_time":"2019-01-20T06:31:26+00:00","article_modified_time":"2019-03-02T04:37:49+00:00","og_image":[{"width":950,"height":518,"url":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Regular-Expressions-in-Java.jpg","type":"image\/jpeg"}],"author":"kindsonthegenius","twitter_card":"summary_large_image","twitter_misc":{"Written by":"kindsonthegenius","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#article","isPartOf":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/"},"author":{"name":"kindsonthegenius","@id":"https:\/\/www.kindsonthegenius.com\/java\/#\/schema\/person\/63a68934672db675ff0cd80d066510c2"},"headline":"Java &#8211; Regular Expressions &#8211; 1","datePublished":"2019-01-20T06:31:26+00:00","dateModified":"2019-03-02T04:37:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/"},"wordCount":1024,"commentCount":0,"image":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Regular-Expressions-in-Java.jpg","articleSection":["Java Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/","url":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/","name":"Java - Regular Expressions - 1 - Java Tutorials","isPartOf":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#primaryimage"},"image":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Regular-Expressions-in-Java.jpg","datePublished":"2019-01-20T06:31:26+00:00","dateModified":"2019-03-02T04:37:49+00:00","author":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/#\/schema\/person\/63a68934672db675ff0cd80d066510c2"},"description":"In this lesson, we are going to learn about regular expressions in Java. We would learn how to use Pattern and Matcher classes.","breadcrumb":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#primaryimage","url":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Regular-Expressions-in-Java.jpg","contentUrl":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Regular-Expressions-in-Java.jpg","width":950,"height":518,"caption":"Regular Expressions in Java"},{"@type":"BreadcrumbList","@id":"https:\/\/www.kindsonthegenius.com\/java\/20-java-regular-expressions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.kindsonthegenius.com\/java\/"},{"@type":"ListItem","position":2,"name":"Java &#8211; Regular Expressions &#8211; 1"}]},{"@type":"WebSite","@id":"https:\/\/www.kindsonthegenius.com\/java\/#website","url":"https:\/\/www.kindsonthegenius.com\/java\/","name":"Java Tutorials","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kindsonthegenius.com\/java\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.kindsonthegenius.com\/java\/#\/schema\/person\/63a68934672db675ff0cd80d066510c2","name":"kindsonthegenius","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g","caption":"kindsonthegenius"},"url":"https:\/\/www.kindsonthegenius.com\/java\/author\/kindsonthegenius-2\/"}]}},"_links":{"self":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts\/124","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/users\/395"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/comments?post=124"}],"version-history":[{"count":9,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts\/124\/revisions"}],"predecessor-version":[{"id":144,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts\/124\/revisions\/144"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/media\/127"}],"wp:attachment":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/media?parent=124"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/categories?post=124"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/tags?post=124"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}