{"id":488,"date":"2011-06-07T23:40:11","date_gmt":"2011-06-07T17:40:11","guid":{"rendered":"http:\/\/w4dev.com\/?p=488"},"modified":"2014-02-23T20:12:21","modified_gmt":"2014-02-23T14:12:21","slug":"javascript-regular-expression","status":"publish","type":"post","link":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/","title":{"rendered":"JavaScript Regular Expression"},"content":{"rendered":"<p>JavaScript Regular Expressions are quite same as PHP Regular Expressions.<\/p>\n<hr\/>\n<h3>Syntax<\/h3>\n<p>var check = \/pattern\/modifiers;<\/p>\n<ul>\n<li>pattern specifies the pattern of an expression<\/li>\n<li>modifiers specify if a search should be global, case-sensitive, etc.<\/li>\n<\/ul>\n<hr\/>\n<h3>Modifiers<\/h3>\n<p>Modifiers are used to perform case-insensitive and global searches:<\/p>\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"table\">\n<thead>\n<tr>\n<th width=\"22%\" align=\"left\">Modifier<\/th>\n<th width=\"78%\" align=\"left\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>i<\/td>\n<td>Perform case-insensitive matching<\/td>\n<\/tr>\n<tr>\n<td>g<\/td>\n<td>Perform a global match (find all matches rather than stopping after the first match)<\/td>\n<\/tr>\n<tr>\n<td>m<\/td>\n<td>Perform multiline matching<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr\/>\n<h3>Brackets<\/h3>\n<p>Brackets are used to find a range of characters:<\/p>\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"table\">\n<thead>\n<tr>\n<th width=\"22%\" align=\"left\">Expression<\/th>\n<th width=\"78%\" align=\"left\">Description<\/th>\n<\/tr>\n<\/thead>\n<thead>\n<\/thead>\n<tbody>\n<tr>\n<td>[abc]<\/td>\n<td>Find any character between the brackets<\/td>\n<\/tr>\n<tr>\n<td>[^abc]<\/td>\n<td>Find any character not between the brackets<\/td>\n<\/tr>\n<tr>\n<td>[0-9]<\/td>\n<td>Find any digit from 0 to 9<\/td>\n<\/tr>\n<tr>\n<td>[A-Z]<\/td>\n<td>Find any character from uppercase A to uppercase Z<\/td>\n<\/tr>\n<tr>\n<td>[a-z]<\/td>\n<td>Find any character from lowercase a to lowercase z<\/td>\n<\/tr>\n<tr>\n<td>[A-z]<\/td>\n<td>Find any character from uppercase A to lowercase z<\/td>\n<\/tr>\n<tr>\n<td>[adgk]<\/td>\n<td>Find any character in the given set<\/td>\n<\/tr>\n<tr>\n<td>[^adgk]<\/td>\n<td>Find any character outside the given set<\/td>\n<\/tr>\n<tr>\n<td>(red|blue|green)<\/td>\n<td>Find any of the alternatives specified<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr\/>\n<h3>Metacharacters<\/h3>\n<p>Metacharacters are characters with a special meaning:<\/p>\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"table\">\n<tbody>\n<tr>\n<th width=\"22%\" align=\"left\">Metacharacter<\/th>\n<th width=\"78%\" align=\"left\">Description<\/th>\n<\/tr>\n<tr>\n<td>.<\/td>\n<td>Find a single character, except newline or line terminator<\/td>\n<\/tr>\n<tr>\n<td>w<\/td>\n<td>Find a word character<\/td>\n<\/tr>\n<tr>\n<td>W<\/td>\n<td>Find a non-word character<\/td>\n<\/tr>\n<tr>\n<td>d<\/td>\n<td>Find a digit<\/td>\n<\/tr>\n<tr>\n<td>D<\/td>\n<td>Find a non-digit character<\/td>\n<\/tr>\n<tr>\n<td>s<\/td>\n<td>Find a whitespace character<\/td>\n<\/tr>\n<tr>\n<td>S<\/td>\n<td>Find a non-whitespace character<\/td>\n<\/tr>\n<tr>\n<td>b<\/td>\n<td>Find a match at the beginning\/end of a word<\/td>\n<\/tr>\n<tr>\n<td>B<\/td>\n<td>Find a match not at the beginning\/end of a word<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>Find a NUL character<\/td>\n<\/tr>\n<tr>\n<td>n<\/td>\n<td>Find a new line character<\/td>\n<\/tr>\n<tr>\n<td>f<\/td>\n<td>Find a form feed character<\/td>\n<\/tr>\n<tr>\n<td>r<\/td>\n<td>Find a carriage return character<\/td>\n<\/tr>\n<tr>\n<td>t<\/td>\n<td>Find a tab character<\/td>\n<\/tr>\n<tr>\n<td>v<\/td>\n<td>Find a vertical tab character<\/td>\n<\/tr>\n<tr>\n<td>xxx<\/td>\n<td>Find the character specified by an octal number xxx<\/td>\n<\/tr>\n<tr>\n<td>xdd<\/td>\n<td>Find the character specified by a hexadecimal number dd<\/td>\n<\/tr>\n<tr>\n<td>uxxxx<\/td>\n<td>Find the Unicode character specified by a hexadecimal number xxxx<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr\/>\n<h3>Quantifiers<\/h3>\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"table\">\n<tbody>\n<tr>\n<th width=\"22%\" align=\"left\">Quantifier<\/th>\n<th width=\"78%\" align=\"left\">Description<\/th>\n<\/tr>\n<tr>\n<td>n+<\/td>\n<td>Matches any string that contains at least one n<\/td>\n<\/tr>\n<tr>\n<td>n*<\/td>\n<td>Matches any string that contains zero or more occurrences of n<\/td>\n<\/tr>\n<tr>\n<td>n?<\/td>\n<td>Matches any string that contains zero or one occurrences of n<\/td>\n<\/tr>\n<tr>\n<td>n{X}<\/td>\n<td>Matches any string that contains a sequence of <em>X<\/em> <em>n<\/em>\u2018s<\/td>\n<\/tr>\n<tr>\n<td>n{X,Y}<\/td>\n<td>Matches any string that contains a sequence of X to Y <em>n<\/em>\u2018s<\/td>\n<\/tr>\n<tr>\n<td>n{X,}<\/td>\n<td>Matches any string that contains a sequence of at least X <em>n<\/em>\u2018s<\/td>\n<\/tr>\n<tr>\n<td>n$<\/td>\n<td>Matches any string with n at the end of it<\/td>\n<\/tr>\n<tr>\n<td>^n<\/td>\n<td>Matches any string with n at the beginning of it<\/td>\n<\/tr>\n<tr>\n<td>?=n<\/td>\n<td>Matches any string that is followed     by a specific string n<\/td>\n<\/tr>\n<tr>\n<td>?!n<\/td>\n<td>Matches any string that is not followed     by a specific string n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>RegExp Object Properties<\/h3>\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"table\">\n<tbody>\n<tr>\n<th width=\"22%\" align=\"left\">Property<\/th>\n<th width=\"78%\" align=\"left\">Description<\/th>\n<\/tr>\n<tr>\n<td>global<\/td>\n<td>Specifies if the \u201cg\u201d modifier is set<\/td>\n<\/tr>\n<tr>\n<td>ignoreCase<\/td>\n<td>Specifies if the \u201ci\u201d modifier is set<\/td>\n<\/tr>\n<tr>\n<td>lastIndex<\/td>\n<td>The index at which to start the next match<\/td>\n<\/tr>\n<tr>\n<td>multiline<\/td>\n<td>Specifies if the \u201cm\u201d modifier is set<\/td>\n<\/tr>\n<tr>\n<td>source<\/td>\n<td>The text of the RegExp pattern<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr\/>\n<h3>RegExp Object Methods<\/h3>\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"table\">\n<thead>\n<tr>\n<th width=\"22%\" align=\"left\">Method<\/th>\n<th width=\"78%\" align=\"left\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>compile()<\/td>\n<td>Compiles a regular expression<\/td>\n<\/tr>\n<tr>\n<td>exec()<\/td>\n<td>Tests for a match in a string. Returns the first match<\/td>\n<\/tr>\n<tr>\n<td>test()<\/td>\n<td>Tests for a match in a string. Returns true or      false<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>JavaScript Regular Expressions are quite same as PHP Regular Expressions. Syntax var check = \/pattern\/modifiers; pattern specifies the pattern of an expression modifiers specify if a search should be global, case-sensitive, etc. Modifiers Modifiers are used to perform case-insensitive and global searches: Modifier Description i Perform case-insensitive matching g Perform a global match (find all [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"qubely_global_settings":"","qubely_interactions":"","_eb_attr":"","footnotes":""},"categories":[25],"tags":[],"class_list":["post-488","post","type-post","status-publish","format-standard","hentry","category-js"],"qubely_featured_image_url":null,"qubely_author":{"display_name":"Shazzad Hossain Khan","author_link":"https:\/\/w4dev.com\/author\/shazzad\/"},"qubely_comment":0,"qubely_category":"<a href=\"https:\/\/w4dev.com\/category\/snippets\/js\/\" rel=\"category tag\">JavaScript<\/a>","qubely_excerpt":"JavaScript Regular Expressions are quite same as PHP Regular Expressions. Syntax var check = \/pattern\/modifiers; pattern specifies the pattern of an expression modifiers specify if a search should be global, case-sensitive, etc. Modifiers Modifiers are used to perform case-insensitive and global searches: Modifier Description i Perform case-insensitive matching g Perform a global match (find all&hellip;","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JavaScript Regular Expression - W4dev<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Regular Expression - W4dev\" \/>\n<meta property=\"og:description\" content=\"JavaScript Regular Expressions are quite same as PHP Regular Expressions. Syntax var check = \/pattern\/modifiers; pattern specifies the pattern of an expression modifiers specify if a search should be global, case-sensitive, etc. Modifiers Modifiers are used to perform case-insensitive and global searches: Modifier Description i Perform case-insensitive matching g Perform a global match (find all [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/\" \/>\n<meta property=\"og:site_name\" content=\"W4dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/w4dev\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/shazzad.wp\" \/>\n<meta property=\"article:published_time\" content=\"2011-06-07T17:40:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-02-23T14:12:21+00:00\" \/>\n<meta name=\"author\" content=\"Shazzad Hossain Khan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/shazzadwp\" \/>\n<meta name=\"twitter:site\" content=\"@w4dev\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shazzad Hossain Khan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/\"},\"author\":{\"name\":\"Shazzad Hossain Khan\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/person\\\/6cffe5a17e4e7c920071c2d8e275bec7\"},\"headline\":\"JavaScript Regular Expression\",\"datePublished\":\"2011-06-07T17:40:11+00:00\",\"dateModified\":\"2014-02-23T14:12:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/\"},\"wordCount\":501,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\"},\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/\",\"url\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/\",\"name\":\"JavaScript Regular Expression - W4dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#website\"},\"datePublished\":\"2011-06-07T17:40:11+00:00\",\"dateModified\":\"2014-02-23T14:12:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/js\\\/javascript-regular-expression\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/w4dev.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript Regular Expression\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#website\",\"url\":\"https:\\\/\\\/w4dev.com\\\/\",\"name\":\"W4dev\",\"description\":\"Best WordPress Plugins\",\"publisher\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/w4dev.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\",\"name\":\"W4dev\",\"url\":\"https:\\\/\\\/w4dev.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/w4dev-logo-2025.png\",\"contentUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/w4dev-logo-2025.png\",\"width\":1022,\"height\":328,\"caption\":\"W4dev\"},\"image\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/w4dev\",\"https:\\\/\\\/x.com\\\/w4dev\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/person\\\/6cffe5a17e4e7c920071c2d8e275bec7\",\"name\":\"Shazzad Hossain Khan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g\",\"caption\":\"Shazzad Hossain Khan\"},\"sameAs\":[\"https:\\\/\\\/shazzad.me\",\"http:\\\/\\\/www.facebook.com\\\/shazzad.wp\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/shazzadwp\"],\"url\":\"https:\\\/\\\/w4dev.com\\\/author\\\/shazzad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JavaScript Regular Expression - W4dev","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:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Regular Expression - W4dev","og_description":"JavaScript Regular Expressions are quite same as PHP Regular Expressions. Syntax var check = \/pattern\/modifiers; pattern specifies the pattern of an expression modifiers specify if a search should be global, case-sensitive, etc. Modifiers Modifiers are used to perform case-insensitive and global searches: Modifier Description i Perform case-insensitive matching g Perform a global match (find all [&hellip;]","og_url":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/","og_site_name":"W4dev","article_publisher":"https:\/\/www.facebook.com\/w4dev","article_author":"http:\/\/www.facebook.com\/shazzad.wp","article_published_time":"2011-06-07T17:40:11+00:00","article_modified_time":"2014-02-23T14:12:21+00:00","author":"Shazzad Hossain Khan","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/shazzadwp","twitter_site":"@w4dev","twitter_misc":{"Written by":"Shazzad Hossain Khan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/#article","isPartOf":{"@id":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/"},"author":{"name":"Shazzad Hossain Khan","@id":"https:\/\/w4dev.com\/#\/schema\/person\/6cffe5a17e4e7c920071c2d8e275bec7"},"headline":"JavaScript Regular Expression","datePublished":"2011-06-07T17:40:11+00:00","dateModified":"2014-02-23T14:12:21+00:00","mainEntityOfPage":{"@id":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/"},"wordCount":501,"commentCount":0,"publisher":{"@id":"https:\/\/w4dev.com\/#organization"},"articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/","url":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/","name":"JavaScript Regular Expression - W4dev","isPartOf":{"@id":"https:\/\/w4dev.com\/#website"},"datePublished":"2011-06-07T17:40:11+00:00","dateModified":"2014-02-23T14:12:21+00:00","breadcrumb":{"@id":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/w4dev.com\/snippets\/js\/javascript-regular-expression\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/w4dev.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript Regular Expression"}]},{"@type":"WebSite","@id":"https:\/\/w4dev.com\/#website","url":"https:\/\/w4dev.com\/","name":"W4dev","description":"Best WordPress Plugins","publisher":{"@id":"https:\/\/w4dev.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/w4dev.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/w4dev.com\/#organization","name":"W4dev","url":"https:\/\/w4dev.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/w4dev.com\/#\/schema\/logo\/image\/","url":"https:\/\/w4dev.com\/wp-content\/uploads\/2026\/02\/w4dev-logo-2025.png","contentUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2026\/02\/w4dev-logo-2025.png","width":1022,"height":328,"caption":"W4dev"},"image":{"@id":"https:\/\/w4dev.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/w4dev","https:\/\/x.com\/w4dev"]},{"@type":"Person","@id":"https:\/\/w4dev.com\/#\/schema\/person\/6cffe5a17e4e7c920071c2d8e275bec7","name":"Shazzad Hossain Khan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g","caption":"Shazzad Hossain Khan"},"sameAs":["https:\/\/shazzad.me","http:\/\/www.facebook.com\/shazzad.wp","https:\/\/x.com\/https:\/\/twitter.com\/shazzadwp"],"url":"https:\/\/w4dev.com\/author\/shazzad\/"}]}},"_links":{"self":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts\/488","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/comments?post=488"}],"version-history":[{"count":0,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts\/488\/revisions"}],"wp:attachment":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/media?parent=488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/categories?post=488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/tags?post=488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}