{"id":3094,"date":"2020-03-13T10:36:37","date_gmt":"2020-03-13T16:36:37","guid":{"rendered":"https:\/\/www.ometrics.com\/blog\/?page_id=3094"},"modified":"2023-07-31T09:28:39","modified_gmt":"2023-07-31T15:28:39","slug":"regular-expression","status":"publish","type":"page","link":"https:\/\/www.ometrics.com\/blog\/support\/regular-expression\/","title":{"rendered":"Regular Expression"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; fullwidth=&#8221;on&#8221; _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;][et_pb_fullwidth_header title=&#8221;Support | General&#8221; text_orientation=&#8221;center&#8221; _builder_version=&#8221;4.16&#8243; title_font=&#8221;||||||||&#8221; title_font_size=&#8221;38px&#8221; custom_padding=&#8221;9px||0px&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_fullwidth_header][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;4px|||||&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_3,2_3&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;||0px|||&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_sidebar area=&#8221;et_pb_widget_area_1&#8243; _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;][\/et_pb_sidebar][\/et_pb_column][et_pb_column type=&#8221;2_3&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.16&#8243; text_font=&#8221;||||||||&#8221; header_font=&#8221;||||||||&#8221; header_2_font=&#8221;||||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#68ab37&#8243; header_3_font=&#8221;||||||||&#8221; header_3_text_align=&#8221;center&#8221; header_3_text_color=&#8221;#68ab37&#8243; header_3_font_size=&#8221;26px&#8221; header_4_font=&#8221;|300|||||||&#8221; header_4_text_color=&#8221;#757575&#8243; header_4_font_size=&#8221;26px&#8221; custom_padding=&#8221;||0px|||&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<div class=\"row\">\n<div class=\"col-md-12\">\n<h3 class=\"text-center\">General &#8211; Regular Expression (RegEx)<\/h3>\n<p><span>Regular expressions are a way to make your bot listen intelligently for what you&#8217;d like to respond to. Regular expressions are utilized by listeners, even if they are created the &#8220;basic&#8221; way. Let&#8217;s take a closer look at how to use regular expressions.<\/span><\/p>\n<\/div>\n<\/div>\n<div class=\"row\">\n<div class=\"col-md-12\">\n<h4><\/h4>\n<h4><\/h4>\n<\/div>\n<\/div>\n<p>[\/et_pb_text][et_pb_image src=&#8221;https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2023\/07\/RegEx-Example.jpg&#8221; _builder_version=&#8221;4.21.0&#8243; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; alt=&#8221;An example of how to use regex&#8221; title_text=&#8221;RegEx Example&#8221; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.21.0&#8243; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">When editing an intent, you have the option of using the Listener Builder (simple keywords or phrases you want the bot to detect) or using RegEx in the Advanced Listener. To use the Advanced Listener, simply toggle the button beside &#8220;<span>Advanced Listener?&#8221;<\/span> to open up the builder.\u00a0<\/span><\/p>\n<p>You can test your Regex in Ochatbot or learn more and test here\u00a0<a href=\"https:\/\/regex101.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/regex101.com\/<\/a><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><strong>Basic RegEx<\/strong><\/p>\n<p><span>Here are some of the most basic and useful regular expressions and examples:<\/span><\/p>\n<p>| &#8211; separates lists of words to be matched (&#8220;cat|dog&#8221; will match a phrase containing either &#8220;cat&#8221; or &#8220;dog&#8221;)<\/p>\n<p>^ &#8211; match the start of a user&#8217;s input (&#8220;^cat&#8221; will match anything starting with &#8220;cat&#8221;)<\/p>\n<p>$ &#8211; match the very end of a user&#8217;s input (&#8220;cat$&#8221; will match any sentence ending with &#8220;cat&#8221;)<\/p>\n<p>\\b &#8211; match a word break (&#8220;\\bcat\\b&#8221; will match &#8220;cat&#8221; exactly, but not &#8220;cats&#8221; or &#8220;vacation&#8221;)<\/p>\n<p>\\s &#8211; a literal space between words (&#8220;cat\\sand\\sdog&#8221;)<\/p>\n<p>(?=.*cat)(?=.*dog).* listens for a phrase containing two words (will match any phrase with the words &#8220;cat&#8221; and &#8220;dog&#8221; somewhere in it)<\/p>\n<p><span>(?=.*(won&#8217;t|can&#8217;t|cant|wont|taking|will not))(?=.*order).* <\/span><span>This will listen for\u00a0 sentences like:<\/span><\/p>\n<p><span>&#8220;It won&#8217;t place my order&#8221;<br \/> &#8220;It wont let me order<br \/> &#8220;My orders won&#8217;t go through&#8221;<\/span><\/p>\n<p><span>(?=.*(won(&#8216;)?t|can(&#8216;)?t|taking|will not))(?=.*order).* is another option\u00a0<\/span><span>the (&#8216;)? is saying that the apostrophe is optional<\/span><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><strong>More Advanced RegEx\u00a0<\/strong><strong>General rules<\/strong><\/p>\n<p>A &#8220;.&#8221; in a regular expression will match any single character.\u00a0 So, if you want to specifically match a &#8220;.&#8221; character, you need a &#8220;\\&#8221; before it &#8212; so, use &#8220;\\.&#8221; For example, a regular expression: &#8220;domain.com&#8221; would also match domianxcom.\u00a0 If you want the &#8220;.&#8221; matched exactly, the regular expression would be: &#8220;domain\\.com&#8221;<\/p>\n<p>Same is with a &#8220;\/&#8221; you should have a \\ before it like \\\/ but in most cases you will be OK with out it.<\/p>\n<p>The &#8220;.*&#8221; allows you to create a wild card<\/p>\n<p>The \\s is a literal space between two words.<\/p>\n<p>&nbsp;<\/p>\n<p>The following characters are the meta characters that give special meaning to the regular expression search syntax:<\/p>\n<p>\\ the backslash escape character.<\/p>\n<p>The backslash gives special meaning to the character following it. For example, the combination &#8220;\\n&#8221; stands for the newline, one of the control characters. The combination &#8220;\\w&#8221; stands for a &#8220;word&#8221; character, one of the convenience escape sequences while &#8220;\\1&#8221; is one of the substitution special characters.<\/p>\n<p>Example: The regex &#8220;aa\\n&#8221; tries to match two consecutive &#8220;a&#8221;s at the end of a line, inclusive the newline character itself.<\/p>\n<p>Example: &#8220;a\\+&#8221; matches &#8220;a+&#8221; and not a series of one or &#8220;a&#8221;s.<\/p>\n<p>^ the caret is the start of line anchor or the negate symbol.<\/p>\n<p>Example: &#8220;^a&#8221; matches &#8220;a&#8221; at the start of a line.<\/p>\n<p>Example: &#8220;[^0-9]&#8221; matches any non digit.<\/p>\n<p>$ the dollar is the end of line anchor.<\/p>\n<p>Example: &#8220;b$&#8221; matches a &#8220;b&#8221; at the end of a line.<\/p>\n<p>Example: &#8220;^b$&#8221; matches the empty line.<\/p>\n<p>{ } the open and close curly bracket are used as range quantifiers.<\/p>\n<p>Example: &#8220;a{2,3}&#8221; matches &#8220;aa&#8221; or &#8220;aaa&#8221;.<\/p>\n<p>[ ] the open and close square bracket define a character class to match a single character.<\/p>\n<p>The &#8220;^&#8221; as the first character following the &#8220;[&#8221; negates and the match is for the characters not listed. The &#8220;-&#8221; denotes a range of characters. Inside a &#8220;[ ]&#8221; character class construction most special characters are interpreted as ordinary characters.<\/p>\n<p>Example: &#8220;[d-f]&#8221; is the same as &#8220;[def]&#8221; and matches &#8220;d&#8221;, &#8220;e&#8221; or &#8220;f&#8221;.<\/p>\n<p>Example: &#8220;[a-z]&#8221; matches any lowercase characters in the alfabet.<\/p>\n<p>Example: &#8220;[^0-9]&#8221; matches any character that is not a digit.<\/p>\n<p>Example: A search for &#8220;[][()?&lt;&gt;.*?]&#8221; in the string &#8220;[]()?&lt;&gt;.*?&#8221; followed by a replace string &#8220;r&#8221; has the result &#8220;rrrrrrrrrrrrr&#8221;. Here the search string is one character class and all the meta characters are interpreted as ordinary characters without the need to escape them.<\/p>\n<p>( ) the open and close parenthesis are used for grouping characters (or other regex).<\/p>\n<p>The groups can be referenced in both the search and the substitution phase. There also exist some special constructs with parenthesis.<\/p>\n<p>Example: &#8220;(ab)\\1&#8221; matches &#8220;abab&#8221;.<\/p>\n<p>. the dot matches any character except the newline.<\/p>\n<p>Example: &#8220;.a&#8221; matches two consecutive characters where the last one is &#8220;a&#8221;.<\/p>\n<p>Example: &#8220;.*\\.txt$&#8221; matches all strings that end in &#8220;.txt&#8221;.<\/p>\n<p>* the star is the match-zero-or-more quantifier.<\/p>\n<p>Example: &#8220;^.*$&#8221; matches an entire line.<\/p>\n<p>+ the plus is the match-one-or-more quantifier.<\/p>\n<p>? the question mark is the match-zero-or-one quantifier. The question mark is also used in special constructs with parenthesis and in changing match behaviour.<\/p>\n<p>| the vertical pipe separates a series of alternatives.<\/p>\n<p>Example: &#8220;(a|b|c)a&#8221; matches &#8220;aa&#8221; or &#8220;ba&#8221; or &#8220;ca&#8221;.<\/p>\n<p>&lt; &gt; the smaller and greater signs are anchors that specify a left or right word boundary.<\/p>\n<p>&#8211; the minus indicates a range in a character class (when it is not at the first position after the &#8220;[&#8221; opening bracket or the last position before the &#8220;]&#8221; closing bracket.<\/p>\n<p>Example: &#8220;[A-Z]&#8221; matches any uppercase character.<\/p>\n<p>Example: &#8220;[A-Z-]&#8221; or &#8220;[-A-Z]&#8221; match any uppercase character or &#8220;-&#8220;.<\/p>\n<p>&amp; the and is the &#8220;substitute complete match&#8221; symbol.<\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<p>[\/et_pb_text][et_pb_accordion _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;][et_pb_accordion_item title=&#8221;I\u2019m still a little overwhelmed by all of this so far. Can you help?&#8221; open=&#8221;on&#8221; _builder_version=&#8221;4.16&#8243; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">That\u2019s very understandable if you are new or unfamiliar with any type of coding. Try visiting <\/span><a href=\"https:\/\/www.w3schools.com\/\"><span style=\"font-weight: 400;\">https:\/\/www.w3schools.com\/<\/span><\/a><span style=\"font-weight: 400;\"> and search \u201cregular expression\u201d in the search bar for more detailed information. If you are still having trouble, contact Support and we will assist you the best we can.<\/span><\/p>\n<p>[\/et_pb_accordion_item][\/et_pb_accordion][et_pb_text _builder_version=&#8221;4.21.0&#8243; text_font=&#8221;||||||||&#8221; header_font=&#8221;||||||||&#8221; header_2_font=&#8221;||||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#68ab37&#8243; header_3_font=&#8221;||||||||&#8221; header_3_text_align=&#8221;center&#8221; header_3_text_color=&#8221;#68ab37&#8243; header_3_font_size=&#8221;26px&#8221; header_4_font=&#8221;|300|||||||&#8221; header_4_text_color=&#8221;#757575&#8243; header_4_font_size=&#8221;26px&#8221; custom_padding=&#8221;||0px|||&#8221; global_module=&#8221;3587&#8243; global_colors_info=&#8221;{}&#8221;]<\/p>\n<div class=\"row\">\n<div class=\"col-md-12\">\n<h3 style=\"text-align: center;\">We Are Here to Help<\/h3>\n<p>Here are the different ways you can contact support:<\/p>\n<ul>\n<li>When logged in, click the &#8220;Contact Support&#8221; button. Your information will be autopopulated so just type in your question or comment.<\/li>\n<li>To create a ticket when not logged in email:\u00a0<a href=\"mailto:support@ometrics.com\">support@ometrics.com<\/a><\/li>\n<li>Call us during business hours: 8 a.m.-5 p.m. MST 800-700-8077.<\/li>\n<li>If outside the US: send an email to <a href=\"mailto:suport@ometrics.com\">suport@ometrics.com<\/a> and we will set up a meeting over Zoom.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<div class=\"row\">\n<div class=\"col-md-12\">\n<h4><\/h4>\n<h4><\/h4>\n<\/div>\n<\/div>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>General &#8211; Regular Expression (RegEx) Regular expressions are a way to make your bot listen intelligently for what you&#8217;d like to respond to. Regular expressions are utilized by listeners, even if they are created the &#8220;basic&#8221; way. Let&#8217;s take a closer look at how to use regular expressions. When editing an intent, you have the [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":2909,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"<!-- wp:divi\/placeholder \/-->","_et_gb_content_width":"","footnotes":""},"class_list":["post-3094","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Build a Chatbot Using Regular Expression | Support | Ometrics<\/title>\n<meta name=\"description\" content=\"Regular Expression (RegEx) are a series of simple commands that make your chatbot smarter and more nimble for a deeper customer experience.\" \/>\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.ometrics.com\/support\/regular-expression\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build a Chatbot Using Regular Expression | Support | Ometrics\" \/>\n<meta property=\"og:description\" content=\"Regular Expression (RegEx) are a series of simple commands that make your chatbot smarter and more nimble for a deeper customer experience.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ometrics.com\/support\/regular-expression\/\" \/>\n<meta property=\"og:site_name\" content=\"Ometrics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Ometrics\/\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-31T15:28:39+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ometrics.com\/blog\/support\/regular-expression\/\",\"url\":\"https:\/\/www.ometrics.com\/support\/regular-expression\/\",\"name\":\"Build a Chatbot Using Regular Expression | Support | Ometrics\",\"isPartOf\":{\"@id\":\"https:\/\/www.ometrics.com\/blog\/#website\"},\"datePublished\":\"2020-03-13T16:36:37+00:00\",\"dateModified\":\"2023-07-31T15:28:39+00:00\",\"description\":\"Regular Expression (RegEx) are a series of simple commands that make your chatbot smarter and more nimble for a deeper customer experience.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ometrics.com\/support\/regular-expression\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ometrics.com\/support\/regular-expression\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ometrics.com\/support\/regular-expression\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ometrics.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Support\",\"item\":\"https:\/\/www.ometrics.com\/blog\/support\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Regular Expression\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ometrics.com\/blog\/#website\",\"url\":\"https:\/\/www.ometrics.com\/blog\/\",\"name\":\"Ometrics\",\"description\":\"AI Chatbots, Conversion Rate Optimization Resources, Exit Popups, A-B Testing\",\"publisher\":{\"@id\":\"https:\/\/www.ometrics.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ometrics.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.ometrics.com\/blog\/#organization\",\"name\":\"Ometrics\",\"url\":\"https:\/\/www.ometrics.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ometrics.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2019\/06\/ometrics-logo-white-r-210x45.png\",\"contentUrl\":\"https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2019\/06\/ometrics-logo-white-r-210x45.png\",\"width\":210,\"height\":45,\"caption\":\"Ometrics\"},\"image\":{\"@id\":\"https:\/\/www.ometrics.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Ometrics\/\",\"https:\/\/x.com\/ometrics\",\"https:\/\/www.instagram.com\/ometricsllc\/\",\"https:\/\/www.linkedin.com\/company\/ometrics\",\"https:\/\/www.youtube.com\/channel\/UCqOKmRfWQ7v7cgXAuSABFIw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Build a Chatbot Using Regular Expression | Support | Ometrics","description":"Regular Expression (RegEx) are a series of simple commands that make your chatbot smarter and more nimble for a deeper customer experience.","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.ometrics.com\/support\/regular-expression\/","og_locale":"en_US","og_type":"article","og_title":"Build a Chatbot Using Regular Expression | Support | Ometrics","og_description":"Regular Expression (RegEx) are a series of simple commands that make your chatbot smarter and more nimble for a deeper customer experience.","og_url":"https:\/\/www.ometrics.com\/support\/regular-expression\/","og_site_name":"Ometrics","article_publisher":"https:\/\/www.facebook.com\/Ometrics\/","article_modified_time":"2023-07-31T15:28:39+00:00","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.ometrics.com\/blog\/support\/regular-expression\/","url":"https:\/\/www.ometrics.com\/support\/regular-expression\/","name":"Build a Chatbot Using Regular Expression | Support | Ometrics","isPartOf":{"@id":"https:\/\/www.ometrics.com\/blog\/#website"},"datePublished":"2020-03-13T16:36:37+00:00","dateModified":"2023-07-31T15:28:39+00:00","description":"Regular Expression (RegEx) are a series of simple commands that make your chatbot smarter and more nimble for a deeper customer experience.","breadcrumb":{"@id":"https:\/\/www.ometrics.com\/support\/regular-expression\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ometrics.com\/support\/regular-expression\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ometrics.com\/support\/regular-expression\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ometrics.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Support","item":"https:\/\/www.ometrics.com\/blog\/support\/"},{"@type":"ListItem","position":3,"name":"Regular Expression"}]},{"@type":"WebSite","@id":"https:\/\/www.ometrics.com\/blog\/#website","url":"https:\/\/www.ometrics.com\/blog\/","name":"Ometrics","description":"AI Chatbots, Conversion Rate Optimization Resources, Exit Popups, A-B Testing","publisher":{"@id":"https:\/\/www.ometrics.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ometrics.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.ometrics.com\/blog\/#organization","name":"Ometrics","url":"https:\/\/www.ometrics.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ometrics.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2019\/06\/ometrics-logo-white-r-210x45.png","contentUrl":"https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2019\/06\/ometrics-logo-white-r-210x45.png","width":210,"height":45,"caption":"Ometrics"},"image":{"@id":"https:\/\/www.ometrics.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Ometrics\/","https:\/\/x.com\/ometrics","https:\/\/www.instagram.com\/ometricsllc\/","https:\/\/www.linkedin.com\/company\/ometrics","https:\/\/www.youtube.com\/channel\/UCqOKmRfWQ7v7cgXAuSABFIw"]}]}},"ometricscontent":{"rendered":"<div class=\"et-l et-l--post\">\n\t\t\t<div class=\"et_builder_inner_content et_pb_gutters3\">\n\t\t<div class=\"et_pb_section et_pb_section_0 et_pb_fullwidth_section et_section_regular\" >\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_0 et_pb_text_align_center et_pb_bg_layout_dark\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_fullwidth_header_container center\">\n\t\t\t\t\t<div class=\"header-content-container center\">\n\t\t\t\t\t<div class=\"header-content\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t<h1 class=\"et_pb_module_header\">Support | General<\/h1>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"et_pb_header_content_wrapper\"><\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"et_pb_fullwidth_header_overlay\"><\/div>\n\t\t\t\t<div class=\"et_pb_fullwidth_header_scroll\"><\/div>\n\t\t\t<\/section>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_row et_pb_row_0\">\n\t\t\t\t<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_pb_sidebar_0 et_pb_widget_area clearfix et_pb_widget_area_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div id=\"block-31\" class=\"et_pb_widget widget_block\">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-text-color has-link-color has-medium-font-size wp-elements-87612ffc8a1b93ec44d830cf30fc7bab\" style=\"color:#0d870d\"><strong>General Account<\/strong><\/p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><a href=\"\/support\/installing-ometrics-script\/\">&nbsp;&nbsp;Installing Ometrics Script<\/a><br><a href=\"\/support\/billing\/\">&nbsp;&nbsp;Billing<\/a><br><a href=\"\/support\/regular-expression\/\">&nbsp;&nbsp;Regular Expression (RegEx)<\/a><br><a href=\"https:\/\/www.ometrics.com\/support\/how-to-enable-third-party-cookies\/\">&nbsp; Enable Third-Party Cookies<\/a><br><a href=\"https:\/\/www.ometrics.com\/support\/shopify-apps-block-activation\/\">&nbsp; Shopify App Block Not Activated&nbsp;<\/a><br><a href=\"https:\/\/www.ometrics.com\/support\/\" data-type=\"link\" data-id=\"https:\/\/www.ometrics.com\/support\/\">  Contact Support<\/a><\/p>\n<\/div>\n<\/div>\n<\/div><div id=\"block-32\" class=\"et_pb_widget widget_block\">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-text-color has-link-color has-medium-font-size wp-elements-7ac4cfa01406017794bb9f804d577924\" style=\"color:#0d870d\"><strong>AI Editor<\/strong><\/p>\n\n\n\n<p><a href=\"https:\/\/www.ometrics.com\/support\/intro-to-the-ai-workspace\/\">\u00a0 Intro to the AI Workspace<\/a><br><br><strong>AI Brain<\/strong><br><a href=\"https:\/\/www.ometrics.com\/support\/scan-sync\/\">\u00a0 Scan &amp; Sync<\/a><br><a href=\"\/support\/engagement-question\/\">\u00a0\u00a0Engagement Question<\/a><br><a href=\"https:\/\/www.ometrics.com\/support\/faqs-feature\/\">\u00a0 FAQ Feature<\/a><br><a href=\"\/support\/ochatbot-global-intents\/\">\u00a0\u00a0Intents<\/a><br><a href=\"\/support\/images-and-videos\/\">\u00a0\u00a0Intents - Images &amp; Videos<\/a><br><a href=\"https:\/\/www.ometrics.com\/support\/fallbacks\/\">\u00a0 Fallbacks<\/a><br><br><strong>Ochatbot<br><\/strong><a href=\"\/support\/ochatbot-questions\/\">\u00a0\u00a0Questions<\/a><br><a href=\"\/support\/page-targeting\/\">\u00a0\u00a0Page Targeting<\/a><br><a href=\"\/support\/ochatbot-triggers-and-events\/\">\u00a0\u00a0Triggers<\/a><br><br><strong>Intelligent Website<br><\/strong><a href=\"https:\/\/www.ometrics.com\/blog\/support\/intelligent-website-ai-get-started\/\">Getting Started<\/a><br><a href=\"https:\/\/www.ometrics.com\/blog\/support\/intelligent-website-ai-lead-support-forms\/\">\u00a0 Lead &amp; Support Forms<\/a><br><a href=\"https:\/\/www.ometrics.com\/blog\/intelligent-website-ai-layout-tab\/\">\u00a0 Layout<\/a><br><a href=\"https:\/\/www.ometrics.com\/blog\/support\/image-video-button-settings\/\">\u00a0 Buttons &amp; Media<\/a><br><br><strong>eCommerce<br><\/strong><a href=\"\/support\/ochatbot-ecommerce\/\">\u00a0 Settings<\/a><br><a href=\"\/support\/product-finder\/\">\u00a0\u00a0Product Finder<\/a><br><a href=\"\/support\/ochatbot-settings\/\">\u00a0\u00a0Design<\/a><br><a href=\"\/support\/ochatbot-alerts\/\">\u00a0\u00a0Email Alerts<\/a><\/p>\n<\/div>\n<\/div><div id=\"block-33\" class=\"et_pb_widget widget_block\">\n<details class=\"wp-block-details has-medium-font-size is-layout-flow wp-block-details-is-layout-flow\"><summary>Legacy Tools<\/summary>\n<p class=\"has-medium-font-size\"><strong>LeadBot<\/strong><\/p>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"https:\/\/www.ometrics.com\/support\/leadbot\">&nbsp;&nbsp;Get Started<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Exit Popups &amp; Mobile Banners<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/popups-get-started\/\">&nbsp;&nbsp;Get Started<\/a><br><a href=\"\/support\/popups-desktop-popup\/\">&nbsp;&nbsp;Desktop Popups<\/a><br><a href=\"\/support\/popups-mobile-banner\/\">&nbsp;&nbsp;Mobile Banner<\/a><br><a href=\"\/support\/popups-mobile-popup\/\">&nbsp;&nbsp;Mobile Popup<\/a><br><a href=\"\/support\/popups-button-actions\/\">&nbsp;&nbsp;Button Actions<\/a><br><a href=\"\/support\/popups-triggers\/\">&nbsp;&nbsp;Triggers<\/a><br><a href=\"\/support\/popups-targeting\/\">&nbsp;&nbsp;Targeting<\/a><br><a href=\"\/support\/popups-alerts-and-connections\/\">&nbsp;&nbsp;Alerts and Connections<\/a><br><a href=\"\/support\/popups-tips-and-tricks\/\">&nbsp;&nbsp;Tips and Tricks<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Offer Sliders<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/offer-sliders-get-started\/\">&nbsp;&nbsp;Get Started<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Lead Sliders<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/lead-sliders-get-started\/\">&nbsp;&nbsp;Get Started<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Offer Tabs<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/offer-tabs-get-started\/\">&nbsp;&nbsp;Get Started<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Feedback Tabs<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/feedback-tabs-get-started\/\">&nbsp;&nbsp;Get Started<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Need Help Tabs<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/need-help-tabs-get-started\/\">&nbsp;&nbsp;Get Started<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-medium-font-size\">Funnel Metrics<\/h3>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"\/support\/funnel-metrics-get-started\/\">&nbsp;&nbsp;Get Started<\/a><\/p>\n<\/details>\n<\/div>\n\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><div class=\"row\">\n<div class=\"col-md-12\">\n<h3 class=\"text-center\">General &#8211; Regular Expression (RegEx)<\/h3>\n<p><span>Regular expressions are a way to make your bot listen intelligently for what you&#8217;d like to respond to. Regular expressions are utilized by listeners, even if they are created the &#8220;basic&#8221; way. Let&#8217;s take a closer look at how to use regular expressions.<\/span><\/p>\n<\/div>\n<\/div>\n<div class=\"row\">\n<div class=\"col-md-12\">\n<h4><\/h4>\n<h4><\/h4>\n<\/div>\n<\/div><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_image et_pb_image_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" decoding=\"async\" width=\"1261\" height=\"835\" src=\"https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2023\/07\/RegEx-Example.jpg\" alt=\"An example of how to use regex\" title=\"RegEx Example\" srcset=\"https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2023\/07\/RegEx-Example.jpg 1261w, https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2023\/07\/RegEx-Example-980x649.jpg 980w, https:\/\/www.ometrics.com\/blog\/wp-content\/uploads\/2023\/07\/RegEx-Example-480x318.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1261px, 100vw\" class=\"wp-image-8571\" \/><\/span>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><p><span style=\"font-weight: 400;\">When editing an intent, you have the option of using the Listener Builder (simple keywords or phrases you want the bot to detect) or using RegEx in the Advanced Listener. To use the Advanced Listener, simply toggle the button beside &#8220;<span>Advanced Listener?&#8221;<\/span> to open up the builder.\u00a0<\/span><\/p>\n<p>You can test your Regex in Ochatbot or learn more and test here\u00a0<a href=\"https:\/\/regex101.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/regex101.com\/<\/a><\/p><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><p><strong>Basic RegEx<\/strong><\/p>\n<p><span>Here are some of the most basic and useful regular expressions and examples:<\/span><\/p>\n<p>| &#8211; separates lists of words to be matched (&#8220;cat|dog&#8221; will match a phrase containing either &#8220;cat&#8221; or &#8220;dog&#8221;)<\/p>\n<p>^ &#8211; match the start of a user&#8217;s input (&#8220;^cat&#8221; will match anything starting with &#8220;cat&#8221;)<\/p>\n<p>$ &#8211; match the very end of a user&#8217;s input (&#8220;cat$&#8221; will match any sentence ending with &#8220;cat&#8221;)<\/p>\n<p>\\b &#8211; match a word break (&#8220;\\bcat\\b&#8221; will match &#8220;cat&#8221; exactly, but not &#8220;cats&#8221; or &#8220;vacation&#8221;)<\/p>\n<p>\\s &#8211; a literal space between words (&#8220;cat\\sand\\sdog&#8221;)<\/p>\n<p>(?=.*cat)(?=.*dog).* listens for a phrase containing two words (will match any phrase with the words &#8220;cat&#8221; and &#8220;dog&#8221; somewhere in it)<\/p>\n<p><span>(?=.*(won&#8217;t|can&#8217;t|cant|wont|taking|will not))(?=.*order).* <\/span><span>This will listen for\u00a0 sentences like:<\/span><\/p>\n<p><span>&#8220;It won&#8217;t place my order&#8221;<br \/> &#8220;It wont let me order<br \/> &#8220;My orders won&#8217;t go through&#8221;<\/span><\/p>\n<p><span>(?=.*(won(&#8216;)?t|can(&#8216;)?t|taking|will not))(?=.*order).* is another option\u00a0<\/span><span>the (&#8216;)? is saying that the apostrophe is optional<\/span><\/p><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><p><strong>More Advanced RegEx\u00a0<\/strong><strong>General rules<\/strong><\/p>\n<p>A &#8220;.&#8221; in a regular expression will match any single character.\u00a0 So, if you want to specifically match a &#8220;.&#8221; character, you need a &#8220;\\&#8221; before it &#8212; so, use &#8220;\\.&#8221; For example, a regular expression: &#8220;domain.com&#8221; would also match domianxcom.\u00a0 If you want the &#8220;.&#8221; matched exactly, the regular expression would be: &#8220;domain\\.com&#8221;<\/p>\n<p>Same is with a &#8220;\/&#8221; you should have a \\ before it like \\\/ but in most cases you will be OK with out it.<\/p>\n<p>The &#8220;.*&#8221; allows you to create a wild card<\/p>\n<p>The \\s is a literal space between two words.<\/p>\n<p>&nbsp;<\/p>\n<p>The following characters are the meta characters that give special meaning to the regular expression search syntax:<\/p>\n<p>\\ the backslash escape character.<\/p>\n<p>The backslash gives special meaning to the character following it. For example, the combination &#8220;\\n&#8221; stands for the newline, one of the control characters. The combination &#8220;\\w&#8221; stands for a &#8220;word&#8221; character, one of the convenience escape sequences while &#8220;\\1&#8221; is one of the substitution special characters.<\/p>\n<p>Example: The regex &#8220;aa\\n&#8221; tries to match two consecutive &#8220;a&#8221;s at the end of a line, inclusive the newline character itself.<\/p>\n<p>Example: &#8220;a\\+&#8221; matches &#8220;a+&#8221; and not a series of one or &#8220;a&#8221;s.<\/p>\n<p>^ the caret is the start of line anchor or the negate symbol.<\/p>\n<p>Example: &#8220;^a&#8221; matches &#8220;a&#8221; at the start of a line.<\/p>\n<p>Example: &#8220;[^0-9]&#8221; matches any non digit.<\/p>\n<p>$ the dollar is the end of line anchor.<\/p>\n<p>Example: &#8220;b$&#8221; matches a &#8220;b&#8221; at the end of a line.<\/p>\n<p>Example: &#8220;^b$&#8221; matches the empty line.<\/p>\n<p>{ } the open and close curly bracket are used as range quantifiers.<\/p>\n<p>Example: &#8220;a{2,3}&#8221; matches &#8220;aa&#8221; or &#8220;aaa&#8221;.<\/p>\n<p>[ ] the open and close square bracket define a character class to match a single character.<\/p>\n<p>The &#8220;^&#8221; as the first character following the &#8220;[&#8221; negates and the match is for the characters not listed. The &#8220;-&#8221; denotes a range of characters. Inside a &#8220;[ ]&#8221; character class construction most special characters are interpreted as ordinary characters.<\/p>\n<p>Example: &#8220;[d-f]&#8221; is the same as &#8220;[def]&#8221; and matches &#8220;d&#8221;, &#8220;e&#8221; or &#8220;f&#8221;.<\/p>\n<p>Example: &#8220;[a-z]&#8221; matches any lowercase characters in the alfabet.<\/p>\n<p>Example: &#8220;[^0-9]&#8221; matches any character that is not a digit.<\/p>\n<p>Example: A search for &#8220;[][()?&lt;&gt;.*?]&#8221; in the string &#8220;[]()?&lt;&gt;.*?&#8221; followed by a replace string &#8220;r&#8221; has the result &#8220;rrrrrrrrrrrrr&#8221;. Here the search string is one character class and all the meta characters are interpreted as ordinary characters without the need to escape them.<\/p>\n<p>( ) the open and close parenthesis are used for grouping characters (or other regex).<\/p>\n<p>The groups can be referenced in both the search and the substitution phase. There also exist some special constructs with parenthesis.<\/p>\n<p>Example: &#8220;(ab)\\1&#8221; matches &#8220;abab&#8221;.<\/p>\n<p>. the dot matches any character except the newline.<\/p>\n<p>Example: &#8220;.a&#8221; matches two consecutive characters where the last one is &#8220;a&#8221;.<\/p>\n<p>Example: &#8220;.*\\.txt$&#8221; matches all strings that end in &#8220;.txt&#8221;.<\/p>\n<p>* the star is the match-zero-or-more quantifier.<\/p>\n<p>Example: &#8220;^.*$&#8221; matches an entire line.<\/p>\n<p>+ the plus is the match-one-or-more quantifier.<\/p>\n<p>? the question mark is the match-zero-or-one quantifier. The question mark is also used in special constructs with parenthesis and in changing match behaviour.<\/p>\n<p>| the vertical pipe separates a series of alternatives.<\/p>\n<p>Example: &#8220;(a|b|c)a&#8221; matches &#8220;aa&#8221; or &#8220;ba&#8221; or &#8220;ca&#8221;.<\/p>\n<p>&lt; &gt; the smaller and greater signs are anchors that specify a left or right word boundary.<\/p>\n<p>&#8211; the minus indicates a range in a character class (when it is not at the first position after the &#8220;[&#8221; opening bracket or the last position before the &#8220;]&#8221; closing bracket.<\/p>\n<p>Example: &#8220;[A-Z]&#8221; matches any uppercase character.<\/p>\n<p>Example: &#8220;[A-Z-]&#8221; or &#8220;[-A-Z]&#8221; match any uppercase character or &#8220;-&#8220;.<\/p>\n<p>&amp; the and is the &#8220;substitute complete match&#8221; symbol.<\/p><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><h2>Frequently Asked Questions<\/h2><\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_accordion et_pb_accordion_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_toggle et_pb_module et_pb_accordion_item et_pb_accordion_item_0  et_pb_toggle_open\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<h5 class=\"et_pb_toggle_title\">I\u2019m still a little overwhelmed by all of this so far. Can you help?<\/h5>\n\t\t\t\t<div class=\"et_pb_toggle_content clearfix\"><p><span style=\"font-weight: 400;\">That\u2019s very understandable if you are new or unfamiliar with any type of coding. Try visiting <\/span><a href=\"https:\/\/www.w3schools.com\/\"><span style=\"font-weight: 400;\">https:\/\/www.w3schools.com\/<\/span><\/a><span style=\"font-weight: 400;\"> and search \u201cregular expression\u201d in the search bar for more detailed information. If you are still having trouble, contact Support and we will assist you the best we can.<\/span><\/p><\/div>\n\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_text_inner\"><div class=\"row\">\n<div class=\"col-md-12\">\n<h3 style=\"text-align: center;\">We Are Here to Help<\/h3>\n<p>Here are the different ways you can contact support:<\/p>\n<ul>\n<li>When logged in, click the \"Contact Support\" button. Your information will be autopopulated so just type in your question or comment.<\/li>\n<li>To create a ticket when not logged in email:\u00a0<a href=\"mailto:support@ometrics.com\">support@ometrics.com<\/a><\/li>\n<li>Call us during business hours: 8 a.m.-5 p.m. MST 800-700-8077.<\/li>\n<li>If outside the US: send an email to <a href=\"mailto:suport@ometrics.com\">suport@ometrics.com<\/a> and we will set up a meeting over Zoom.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<div class=\"row\">\n<div class=\"col-md-12\">\n<h4><\/h4>\n<h4><\/h4>\n<\/div>\n<\/div>\n<\/div>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\t\t<\/div>\n\t<\/div>\n\t","protected":false},"_links":{"self":[{"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/pages\/3094","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/comments?post=3094"}],"version-history":[{"count":19,"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/pages\/3094\/revisions"}],"predecessor-version":[{"id":8572,"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/pages\/3094\/revisions\/8572"}],"up":[{"embeddable":true,"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/pages\/2909"}],"wp:attachment":[{"href":"https:\/\/www.ometrics.com\/blog\/wp-json\/wp\/v2\/media?parent=3094"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}