{"id":7010,"date":"2018-07-03T00:00:00","date_gmt":"2018-07-02T16:00:00","guid":{"rendered":"https:\/\/www.fraudlabspro.com\/resources2\/tutorials\/how-to-validate-an-email-address-syntax\/"},"modified":"2026-05-28T08:24:09","modified_gmt":"2026-05-28T00:24:09","password":"","slug":"how-to-validate-an-email-address-syntax","status":"publish","type":"docs","link":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/","title":{"rendered":"How to validate an email address syntax"},"content":{"rendered":"<p class=\"EnlighterJSRAW\" data-enlighter-language=\"php\"><span style=\"font-size: revert; color: initial; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;\">Whether you are selling digital contents, services, or physical goods via your online store, in most cases, you may require users to sign up an user account with their email addresses. Although FraudLabs Pro will perform the email validation during fraud detection, this will only take place at the ordering process. If you want to implement the checking, i.e, during the account creation, below are some tips of how to validate an email format.<\/span><\/p>\n<p>An email address comes with two parts separated by an at-sign (@), namely the local part and domain part. According to RFC5321, by the Internet Engineering Task Force (IETF) and the Internet Society (ISOC), the characters allowed in both parts are differ based on several conditions and restrictions. Below are the explanation to the email address syntax.<\/p>\n<h6><strong><b>Local Part<\/b><\/strong><\/h6>\n<p>As what defined in RFC standards, the local part can contain up to maximum 64 characters, and may contain the following special characters without any restrictions:<\/p>\n<p>! # $ % &amp; &#8216; * + &#8211; \/ = ? \u00c2\u00a0^ _ ` . { | } ~<\/p>\n<p>Any special characters that are not listed above should be used in the quotes, and need to be preceded by a backslash (). Some examples of using those special characters are:<\/p>\n<ul>\n<li>&#8220;Abc@def&#8221;@example.com<\/li>\n<li>&#8220;Fred Bloggs&#8221;@example.com<\/li>\n<li>&#8220;\\Blow&#8221;@example.com<\/li>\n<li>&#8220;Abc@def&#8221;@example.com<\/li>\n<li>&#8220;Fred Bloggs&#8221;@example.com<\/li>\n<\/ul>\n<p>Be in mind that the period sign (.) can be used in local part with the following restrictions:<\/p>\n<ul>\n<li>Not in the first or last of the local part, And<\/li>\n<li>cannot be used consecutively.<\/li>\n<\/ul>\n<h6><strong><b>Domain Part<\/b><\/strong><\/h6>\n<p>The domain part has a length of maximum up to 255 characters according to RFC standards. The domain part must follow the requirement for hostname, and a list of dot-separated DNS labels with limitation of 63 characters length with the requirements of:<\/p>\n<ul>\n<li>uppercase and lowercase Latin letters a to z;<\/li>\n<li>Number digits 0-9, with the condition of top-level domains cannot be all numeric;<\/li>\n<li>The hypen symbol(-), provided that it should not be the first or the last character.<\/li>\n<\/ul>\n<p>Note: The dotless domain name(xxx@example) is prohibited by the Internet Corporation for Assigned Names and Numbers(ICANN) due to security and stability risks.<\/p>\n<h6><strong><b>Sample regular expression for checking email address format<\/b><\/strong><\/h6>\n<p>Below is the sample of regular expression that will validate the correct syntax of an email address:<\/p>\n<pre>\/^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"([\"]!#-[^-~ t@\\\\]|(\\[t -~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\/i<\/pre>\n<p>This regular expression will first check the first character\u00c2\u00a0in email address if a double quote was presented in the first character. If the double quote found, it will make sure the character embraced inside the double quote is valid as according to the standard.<\/p>\n<p>Next, this regular expression will check the domain part to make sure that the domain part contains only the valid characters as according to RFC standards. Lastly, this regular expression will make sure that the email address ended with the correct domain format.<\/p>\n<p>Please note that the above syntax works for most email validation. Please also note that although RFC standards allows the use of IP address in domain part, but this is not cover in this regular expression checking.<\/p>\n<h2>Validating email address syntax using regular expression in PHP<\/h2>\n<p>In PHP, you can validate email address syntax using regular expression like this:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\n$re = '\/^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"([\"]!#-[^-~ t@\\\\]|(\\[t -~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\/i';\n$str = 'user@example.com';\n\npreg_match($re, $str, $matches, PREG_OFFSET_CAPTURE, 0);\n\nif (count($matches) &gt; 0) {\n    echo 'Email address matched with the syntax.';\n}\n?&gt;<\/pre>\n<p>You can also use the <strong>filter_var<\/strong> function to validate the email address syntax, for example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\n$email = 'user@example.com';\nif( filter_var( $email ,FILTER_VALIDATE_EMAIL ) )\n{\n    echo 'Email\u00c2\u00a0address\u00c2\u00a0matched\u00c2\u00a0with\u00c2\u00a0the\u00c2\u00a0syntax.';\n}\n?&gt;<\/pre>\n<h2>Validating email address syntax using regular expression in Java<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"java\">import java.util.regex.Matcher;\nimport java.util.regex.Pattern;\n\npublic class Example {\n    public static void main(String[] args) {\n        final String regex = \"^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(\\.[!#-'*+\/-9=?A-Z^-~\\-]{1,64})*|\"([\"]!#-[^-~ t@\\\\]|(\\[t -~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(\\.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\";\n        final String string = \"user@example.com\";\n        final Pattern pattern = Pattern.compile(regex, Pattern.CASE_INSENSITIVE);\n        final Matcher matcher = pattern.matcher(string);\n        if (matcher.find()) {\n            System.out.println('Email address matched with the syntax.');\n        }\n    }\n}<\/pre>\n<h2>Validating email address syntax using regular expression in Go<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"golang\">package\u00c2\u00a0main\n\nimport\u00c2\u00a0(\n\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\"regexp\"\n\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\"fmt\"\n)\n\nfunc\u00c2\u00a0main()\u00c2\u00a0{\n\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0var\u00c2\u00a0re\u00c2\u00a0=\u00c2\u00a0regexp.MustCompile(`(?i)^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"([\"]!#-[^-~\u00c2\u00a0t@\\\\]|(\\[t\u00c2\u00a0-~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$`)\n \u00c2\u00a0\u00c2\u00a0\u00c2\u00a0var\u00c2\u00a0str\u00c2\u00a0=\u00c2\u00a0`user@example.com`\n\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\n\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0if\u00c2\u00a0len(re.FindStringIndex(str))\u00c2\u00a0&gt;\u00c2\u00a00\u00c2\u00a0{\n \u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0fmt.Println('Email\u00c2\u00a0address\u00c2\u00a0matched\u00c2\u00a0with\u00c2\u00a0the\u00c2\u00a0syntax.')\n\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0}\n}<\/pre>\n<h2>Validating email address syntax using regular expression in C#<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\">using System;\nusing System.Text.RegularExpressions;\n\npublic class Example\n{\n    public static void Main()\n    {\n        string pattern = \/\n^([!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"\"([]!#-[^-~ t@\\\\]|(\\[t -~]))+\"\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\n\/;\n        string input = @\"user@example.com\";\n        RegexOptions options = RegexOptions.IgnoreCase;\n\n        Match m = Regex.Match(input, pattern, options);\n        if (match.Success) {\n            Console.WriteLine('Email\u00c2\u00a0address\u00c2\u00a0matched\u00c2\u00a0with\u00c2\u00a0the\u00c2\u00a0syntax.');\n        }\n    }\n}<\/pre>\n<h2>Validating email address syntax using regular expression in Python<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">import re\n\nregex = r\"\/^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"([\"]!#-[^-~ t@\\\\]|(\\[t -~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\/i\"\n\ntest_str = \"user@example.com\"\nmatches = re.search(regex, test_str, re.IGNORECASE)\nif matches:\n\n    # Print message to indicate match, or do something here\n    print('Email address matched with the syntax.')<\/pre>\n<h2>Validating email address syntax using regular expression in Javascript<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">const regex = \/^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"([\"]!#-[^-~ t@\\\\]|(\\[t -~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\/i;\n\nconst str = `user@example.com`;\nlet m;\n\nif ((m = regex.exec(str)) !== null) {\n\n    \/\/ Print message to indicate match, or do something here\n    console.log('Email address matched with the syntax.');\n}<\/pre>\n<h2>Validating email address syntax using regular expression in Ruby<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"ruby\">re = \/^([\"!#-'*+\/-9=?A-Z^-~\\\\-]{1,64}(.[!#-'*+\/-9=?A-Z^-~\\\\-]{1,64})*|\"([\"]!#-[^-~ t@\\\\]|(\\[t -~]))+\")@([0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?(.[0-9A-Z]([0-9A-Z-]{0,61}[0-9A-Za-z])?))+$\/i\nstr = 'user@example.com'\n\n# Print the match result\nstr.match(re) do |match|\nputs 'Email address matched with the syntax.'\nend<\/pre>\n<h2 class=\"m-bottom-5\" style=\"text-align: center;\">Ready to start with FraudLabs Pro?<\/h2>\n<p class=\"m-bottom-5 is-size-20\" style=\"text-align: center;\">Get Micro plan for free, you can quickly explore and integrate with our fraud prevention solution in minutes.<\/p>\n<p style=\"text-align: center;\"><a class=\"maxbutton-1 maxbutton maxbutton-sign-up-micro\" target=\"_blank\" title=\"Sign Up Micro Plan and get 500 validation for FREE\" rel=\"noopener\" href=\"https:\/\/www.fraudlabspro.com\/checkout-micro#fraudlabspro-freesignup\"><span class='mb-text'>Sign Up Free<\/span><\/a><\/p>\n<p><strong>Bonus Tip<\/strong>: If you need to validate a list of email addresses, you can take a look at <a href=\"https:\/\/www.mailboxvalidator.com\/\">MailboxValidator<\/a> which has bulk validation plans to suit all budgets.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Whether you are selling digital contents, services, or physical goods via your online store, in most cases, you may require [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_lmt_disableupdate":"","_lmt_disable":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"doc_category":[185],"doc_tag":[],"class_list":["post-7010","docs","type-docs","status-publish","hentry","doc_category-developer-guide"],"year_month":"2026-06","word_count":1137,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"FraudLabs Pro","author_nicename":"kaiwen","author_url":"https:\/\/www.fraudlabspro.com\/resources\/author\/kaiwen\/"},"doc_category_info":[{"term_name":"Developer Guide","term_url":"https:\/\/www.fraudlabspro.com\/resources\/categories\/developer-guide\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to validate an email address syntax -<\/title>\n<meta name=\"description\" content=\"Tutorial to provide explanation on the email format and sample regular expression of how to validate an email syntax. Learn more.\" \/>\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.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to validate an email address syntax -\" \/>\n<meta property=\"og:description\" content=\"Tutorial to provide explanation on the email format and sample regular expression of how to validate an email syntax. Learn more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-28T00:24:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2018\/12\/banner-articles-and-tutorials.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"315\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-validate-an-email-address-syntax\\\/\",\"url\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-validate-an-email-address-syntax\\\/\",\"name\":\"How to validate an email address syntax -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/#website\"},\"datePublished\":\"2018-07-02T16:00:00+00:00\",\"dateModified\":\"2026-05-28T00:24:09+00:00\",\"description\":\"Tutorial to provide explanation on the email format and sample regular expression of how to validate an email syntax. Learn more.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-validate-an-email-address-syntax\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-validate-an-email-address-syntax\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-validate-an-email-address-syntax\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to validate an email address syntax\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/\",\"name\":\"\",\"description\":\"Resources About FraudLabs Pro Services\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to validate an email address syntax -","description":"Tutorial to provide explanation on the email format and sample regular expression of how to validate an email syntax. Learn more.","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.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/","og_locale":"en_US","og_type":"article","og_title":"How to validate an email address syntax -","og_description":"Tutorial to provide explanation on the email format and sample regular expression of how to validate an email syntax. Learn more.","og_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/","article_modified_time":"2026-05-28T00:24:09+00:00","og_image":[{"width":600,"height":315,"url":"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2018\/12\/banner-articles-and-tutorials.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/","url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/","name":"How to validate an email address syntax -","isPartOf":{"@id":"https:\/\/www.fraudlabspro.com\/resources\/#website"},"datePublished":"2018-07-02T16:00:00+00:00","dateModified":"2026-05-28T00:24:09+00:00","description":"Tutorial to provide explanation on the email format and sample regular expression of how to validate an email syntax. Learn more.","breadcrumb":{"@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-validate-an-email-address-syntax\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fraudlabspro.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/"},{"@type":"ListItem","position":3,"name":"How to validate an email address syntax"}]},{"@type":"WebSite","@id":"https:\/\/www.fraudlabspro.com\/resources\/#website","url":"https:\/\/www.fraudlabspro.com\/resources\/","name":"","description":"Resources About FraudLabs Pro Services","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fraudlabspro.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs\/7010","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/comments?post=7010"}],"version-history":[{"count":1,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs\/7010\/revisions"}],"predecessor-version":[{"id":7538,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs\/7010\/revisions\/7538"}],"wp:attachment":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/media?parent=7010"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/doc_category?post=7010"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/doc_tag?post=7010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}