{"id":447,"date":"2010-06-15T12:54:42","date_gmt":"2010-06-15T06:54:42","guid":{"rendered":"http:\/\/w4dev.com\/?p=447"},"modified":"2026-02-16T11:27:31","modified_gmt":"2026-02-16T05:27:31","slug":"regular-expression-character-definition","status":"publish","type":"post","link":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/","title":{"rendered":"PHP Regular Expression Character Definition"},"content":{"rendered":"\n<p>To user PHP regular expression with <code>preg_match<\/code>, <code>preg_replace<\/code> or other <code>preg_<\/code> function, one should understand the characters that are used. Below listed all of the characters that are used in regex.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">List of Regular Expression Characters<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">^ \/\/ Match the beginning of the line\n. \/\/ Match any character (except newline)\n$ \/\/ Match the end of the line (or before newline at the end)\n| \/\/ Alternation\n() \/\/ Grouping\n[] \/\/ Character class\n* \/\/ Match 0 or more times\n+ \/\/ Match 1 or more times\n? \/\/ Match 1 or 0 times\n{n} \/\/ Match exactly n times\n{n,} \/\/ Match at least n times\n{n,m} \/\/ Match at least n but not more than m times\n\n\/\/ More Special Character Stuff\nt \/\/ tab (HT, TAB)\nn \/\/ newline (LF, NL)\nr \/\/ return (CR)\nf \/\/ form feed (FF)\na \/\/ alarm (bell) (BEL)\ne \/\/ escape (think troff) (ESC)\n33 \/\/ octal char (think of a PDP-11)\nx1B \/\/ hex char\nc[ \/\/ control char\nl \/\/ lowercase next char (think vi)\nu \/\/ uppercase next char (think vi)\nL \/\/ lowercase till E (think vi)\nU \/\/ uppercase till E (think vi)\nE \/\/ end case modification (think vi)\nQ \/\/ quote (disable) pattern metacharacters till E\n\n\/\/ Even More Special Characters\nw \/\/ Match a \"word\" character (alphanumeric plus \"_\")\nW \/\/ Match a non-word character\ns \/\/ Match a whitespace character\nS \/\/ Match a non-whitespace character\nd \/\/ Match a digit character\nD \/\/ Match a non-digit character\nb \/\/ Match a word boundary\nB \/\/ Match a non-(word boundary)\nA \/\/ Match only at beginning of string\nZ \/\/ Match only at end of string, or before newline at the end\nz \/\/ Match only at end of string\nG \/\/ Match only where previous m\/\/g left off (works only with \/g)\n<\/code><\/pre>\n\n\n\n<p>And for using following character you have to us an extra &#8221; before the character u want to use.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\"><code>^ . $ | ( ) [ ] * + ? { } ,<\/code><\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">PHP Regular Expression Usage Examples<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Match the first numeric block from string<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">if( preg_match( '\/([0-9]+?)\/', $str, $match ) ) {\n    echo $match['1'];\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Replace everything that is not a number from string<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">$str = preg_replace( '\/[^0-9]\/', '', $str );<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>To user PHP regular expression with preg_match, preg_replace or other preg_ function, one should understand the characters that are used. Below listed all of the characters that are used in regex. List of Regular Expression Characters And for using following character you have to us an extra &#8221; before the character u want to use. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":464,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"qubely_global_settings":"","qubely_interactions":"","_eb_attr":"","footnotes":""},"categories":[30],"tags":[33],"class_list":["post-447","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","tag-preg_match"],"qubely_featured_image_url":{"full":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"landscape":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"portraits":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"thumbnail":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression-150x140.jpg",150,140,true],"medium":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"medium_large":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"large":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"1536x1536":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"2048x2048":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"qubely_landscape":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"qubely_portrait":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",360,140,false],"qubely_thumbnail":["https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg",140,54,false]},"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\/php\/\" rel=\"category tag\">Php<\/a>","qubely_excerpt":"To user PHP regular expression with preg_match, preg_replace or other preg_ function, one should understand the characters that are used. Below listed all of the characters that are used in regex. List of Regular Expression Characters And for using following character you have to us an extra &#8221; before the character u want to use.&hellip;","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PHP Regular Expression Character Definition - 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\/php\/regular-expression-character-definition\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP Regular Expression Character Definition - W4dev\" \/>\n<meta property=\"og:description\" content=\"To user PHP regular expression with preg_match, preg_replace or other preg_ function, one should understand the characters that are used. Below listed all of the characters that are used in regex. List of Regular Expression Characters And for using following character you have to us an extra &#8221; before the character u want to use. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/\" \/>\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=\"2010-06-15T06:54:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-16T05:27:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"360\" \/>\n\t<meta property=\"og:image:height\" content=\"140\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/\"},\"author\":{\"name\":\"Shazzad Hossain Khan\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/person\\\/6cffe5a17e4e7c920071c2d8e275bec7\"},\"headline\":\"PHP Regular Expression Character Definition\",\"datePublished\":\"2010-06-15T06:54:42+00:00\",\"dateModified\":\"2026-02-16T05:27:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/\"},\"wordCount\":77,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2010\\\/06\\\/regular-expression.jpg\",\"keywords\":[\"Preg match\"],\"articleSection\":[\"Php\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/\",\"url\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/\",\"name\":\"PHP Regular Expression Character Definition - W4dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2010\\\/06\\\/regular-expression.jpg\",\"datePublished\":\"2010-06-15T06:54:42+00:00\",\"dateModified\":\"2026-02-16T05:27:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#primaryimage\",\"url\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2010\\\/06\\\/regular-expression.jpg\",\"contentUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2010\\\/06\\\/regular-expression.jpg\",\"width\":360,\"height\":140},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/snippets\\\/php\\\/regular-expression-character-definition\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/w4dev.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP Regular Expression Character Definition\"}]},{\"@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":"PHP Regular Expression Character Definition - 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\/php\/regular-expression-character-definition\/","og_locale":"en_US","og_type":"article","og_title":"PHP Regular Expression Character Definition - W4dev","og_description":"To user PHP regular expression with preg_match, preg_replace or other preg_ function, one should understand the characters that are used. Below listed all of the characters that are used in regex. List of Regular Expression Characters And for using following character you have to us an extra &#8221; before the character u want to use. [&hellip;]","og_url":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/","og_site_name":"W4dev","article_publisher":"https:\/\/www.facebook.com\/w4dev","article_author":"http:\/\/www.facebook.com\/shazzad.wp","article_published_time":"2010-06-15T06:54:42+00:00","article_modified_time":"2026-02-16T05:27:31+00:00","og_image":[{"width":360,"height":140,"url":"https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg","type":"image\/jpeg"}],"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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#article","isPartOf":{"@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/"},"author":{"name":"Shazzad Hossain Khan","@id":"https:\/\/w4dev.com\/#\/schema\/person\/6cffe5a17e4e7c920071c2d8e275bec7"},"headline":"PHP Regular Expression Character Definition","datePublished":"2010-06-15T06:54:42+00:00","dateModified":"2026-02-16T05:27:31+00:00","mainEntityOfPage":{"@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/"},"wordCount":77,"commentCount":0,"publisher":{"@id":"https:\/\/w4dev.com\/#organization"},"image":{"@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#primaryimage"},"thumbnailUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg","keywords":["Preg match"],"articleSection":["Php"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/","url":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/","name":"PHP Regular Expression Character Definition - W4dev","isPartOf":{"@id":"https:\/\/w4dev.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#primaryimage"},"image":{"@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#primaryimage"},"thumbnailUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg","datePublished":"2010-06-15T06:54:42+00:00","dateModified":"2026-02-16T05:27:31+00:00","breadcrumb":{"@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#primaryimage","url":"https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg","contentUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2010\/06\/regular-expression.jpg","width":360,"height":140},{"@type":"BreadcrumbList","@id":"https:\/\/w4dev.com\/snippets\/php\/regular-expression-character-definition\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/w4dev.com\/"},{"@type":"ListItem","position":2,"name":"PHP Regular Expression Character Definition"}]},{"@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\/447","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=447"}],"version-history":[{"count":2,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts\/447\/revisions"}],"predecessor-version":[{"id":8728,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts\/447\/revisions\/8728"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/media\/464"}],"wp:attachment":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/media?parent=447"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/categories?post=447"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/tags?post=447"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}