{"id":47717,"date":"2025-06-23T13:47:56","date_gmt":"2025-06-23T11:47:56","guid":{"rendered":"https:\/\/www.investglass.com\/?p=47717"},"modified":"2025-06-23T13:53:18","modified_gmt":"2025-06-23T11:53:18","slug":"waar-wordt-regex-voor-gebruikt","status":"publish","type":"post","link":"https:\/\/www.investglass.com\/nl\/what-is-regex-used-for\/","title":{"rendered":"Waar wordt regex voor gebruikt?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-why-regex-matters-in-crm\">Why REGEX Matters in CRM<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">InvestGlass is proud to announce a major enhancement to our Swiss Sovereign CRM platform: REGEX Automation. Short for Regular Expressions, REGEX is a method for identifying patterns within text. In a CRM environment, the ability to define and apply a regular expression pattern across contact records and form inputs offers unmatched control over data quality, automation, and customisation. Some characters in REGEX have a special character status, meaning they perform specific functions. To match these as literal characters, you must escape them with a backslash.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"279\" src=\"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/InvestGlass-regex-1024x279.png\" alt=\"\" class=\"wp-image-47723\" srcset=\"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/InvestGlass-regex-1024x279.png 1024w, https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/InvestGlass-regex-300x82.png 300w, https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/InvestGlass-regex-768x209.png 768w, https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/InvestGlass-regex.png 1156w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you\u2019re handling onboarding forms, client notes, transaction records, or regulatory data, <strong>testing regular expressions<\/strong> lets you define expected patterns and enforce them across every <strong>input string<\/strong>. With REGEX, users can now search for <strong>one or more characters<\/strong>, validate <strong>alphabetic characters<\/strong>, identify <strong>non digit<\/strong> or <strong>non whitespace character<\/strong> patterns, and act on <strong>matched substrings<\/strong>. REGEX is not only used for validation but also for <strong>searching<\/strong> within text, enabling users to locate specific patterns or <strong>literal<\/strong> values in large datasets.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-understanding-regular-expressions-a-primer\">Understanding Regular Expressions: A Primer<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A <strong>regular expression<\/strong> is a <strong>search pattern<\/strong> used to match character combinations in strings. The pattern is interpreted by <strong>regex engines<\/strong>, which process the <strong>input string<\/strong> and identify whether a <strong>match<\/strong> occurs. In programming, you typically use a function such as the RegExp constructor or regex methods to create and test regular expressions in code. You can apply the <strong>same regular expression<\/strong> to multiple fields or datasets to enforce consistency and clean data.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A few important components of <strong>regex syntax<\/strong> include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Character classes<\/strong>: Define sets of characters to match. For example, [a-z] matches any <strong>lowercase letter<\/strong> from <strong>a to z<\/strong>.<\/li>\n\n\n\n<li><strong>Word character<\/strong> (\\w): Matches any letter, digit, or underscore.<\/li>\n\n\n\n<li><strong>Whitespace character<\/strong> (\\s): Matches spaces, tabs, <strong>form feed<\/strong>, <strong>carriage return<\/strong>, <strong>line feed character<\/strong>, and <strong>vertical tab<\/strong>.<\/li>\n\n\n\n<li><strong>Non whitespace character<\/strong> (\\S): Matches any character except whitespace.<\/li>\n\n\n\n<li><strong>Backslash escapes<\/strong>: Used to give <strong>special characters<\/strong> a <strong>special meaning<\/strong> or to negate it (e.g., . matches a <strong>single character<\/strong> period).<\/li>\n\n\n\n<li><strong>Square brackets<\/strong>: Used to define <strong>character sets<\/strong> like [A-Za-z].<\/li>\n\n\n\n<li><strong>Vertical bar<\/strong> (|): Acts as a logical OR in expressions.<\/li>\n\n\n\n<li><strong>Capturing group<\/strong>: Parentheses () group patterns and store matched text. When a regex function returns a result, it often includes the matched value or substring, which can be used for further processing.<\/li>\n\n\n\n<li><strong>Non capturing group<\/strong>: (?:\u2026) groups patterns without storing matched text.<\/li>\n\n\n\n<li><strong>Word boundary<\/strong> (\\b): Matches the position between a word character and a non-word character.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">REGEX also supports <strong>modifiers<\/strong> that affect matching behavior:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>g (<strong>global search<\/strong>): Matches all instances, not just the first.<\/li>\n\n\n\n<li>i (<strong>case insensitive matching<\/strong>): Makes the match <strong>case insensitive<\/strong>.<\/li>\n\n\n\n<li>m (<strong>multiline mode<\/strong>): Treats the string as multiple lines, affecting anchors like ^ (<strong>beginning<\/strong>) and $ (<strong>end of the string<\/strong>).<\/li>\n\n\n\n<li>s (<strong>single line mode<\/strong>): Allows . to match newline characters like <strong>line feed<\/strong>, <strong>carriage return<\/strong>, and <strong>newline character<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-understanding-character-classes\">Understanding Character Classes<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Character classes are a foundational element of regular expressions, giving you the power to match specific sets of characters within a string. Defined by enclosing characters in square brackets &#8220;` [ ]<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n, a character class allows you to specify exactly which characters you want to match. For example, the character class ```<\/code><\/pre>\n\n\n<p>[a-z]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">matches any lowercase letter from \u201ca\u201d to \u201cz\u201d, making it easy to target alphabetic characters in your data.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Regular expressions also provide shorthand character classes for common patterns: &#8220;` \\d<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n matches any digit, ```\n\\s\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">matches any whitespace character, and &#8220;` \\w<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n matches any word character (letters, digits, or underscores). If you need to match any character except those in a set, you can use a negated character class by adding a caret, like ```\n&#91;^a-z]\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">, which matches any character that is not a lowercase letter. By combining character classes with other regex syntax, you can create powerful expressions to validate, search, and clean your CRM data with precision.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"964\" height=\"837\" src=\"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/posix-standard.png\" alt=\"\" class=\"wp-image-47722\" srcset=\"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/posix-standard.png 964w, https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/posix-standard-300x260.png 300w, https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/posix-standard-768x667.png 768w\" sizes=\"(max-width: 964px) 100vw, 964px\" \/><figcaption class=\"wp-element-caption\">Source <a href=\"https:\/\/en.wikipedia.org\/wiki\/Regular_expression\">Wikipedia<\/a><\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-regex-use-cases-in-investglass\">REGEX Use Cases in InvestGlass<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here are examples of how REGEX enhances productivity within InvestGlass:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">REGEX can be used to validate input fields, filter data, and act on matched substrings. Additionally, REGEX can ensure an overall match of an entire input, such as requiring a field to match a pattern completely rather than just partially. This is useful when you need to confirm that the entire input string conforms to a specific format, not just a portion of it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-data-validation\">Data Validation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Use REGEX to validate email formats, enforce phone number structure, or match <strong>ASCII characters<\/strong> only in usernames. For instance, you might use the pattern ^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+.[A-Za-z]{2,}$ to validate emails. REGEX can also be used to ensure that input fields contain only valid words, or to check that certain words are present or absent in a field.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-field-cleansing-with-character-classes\">Field Cleansing with Character Classes<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Eliminate redundant spaces or symbols using REGEX. Remove <strong>bell characters<\/strong>, normalize spacing with <strong>whitespace character<\/strong> filters, or reformat fields using <strong>capturing groups<\/strong> and substitutions. After cleansing, compare the processed result to the original string to ensure that only the intended changes were made.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-advanced-filtering-and-automation\">Advanced Filtering and Automation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Segment clients whose names start with a specific <strong>lowercase letter<\/strong>, match those who input special sequences, or trigger workflows for fields missing expected structure. REGEX can also be used to extract a value from a field, which can then be used to trigger specific actions or workflows. This enables automation workflows on the basis of <strong>preceding element<\/strong> or <strong>preceding item<\/strong> logic, rather than manual sorting.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-cross-system-matching\">Cross-System Matching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">By using the <strong>same expression<\/strong> across integrated systems, you maintain consistency and accuracy in client matching and reconciliation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-comparing-regex-flavors\">Comparing REGEX Flavors<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Different <strong>regex engines<\/strong> interpret syntax slightly differently. While InvestGlass supports a broad set of modern REGEX features, it\u2019s important to understand that <strong>other engines<\/strong> (such as JavaScript, Python, or .NET) may treat certain patterns with variations. Support for character sets, such as Unicode or ASCII, may also differ between engines, affecting how patterns are matched. We follow widely used conventions to ensure compatibility and intuitive use.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a comparison of regex features and character set support across engines, see the following table.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-best-practices-for-pattern-matching\">Best Practices for Pattern Matching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To get the most out of regular expressions in your CRM workflows, it\u2019s important to follow best practices for pattern matching. Start by keeping your patterns as simple and concise as possible overly complex expressions can be hard to read and maintain. Leverage character classes to match specific groups of characters, and use quantifiers to control how many times a character or group should appear.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Capturing groups are invaluable for extracting specific parts of a match, while non-capturing groups help organize your pattern without storing unnecessary data. Be mindful of greedy quantifiers, which can sometimes match more than intended and impact performance; consider possessive quantifiers to limit backtracking when needed. Above all, always test your regular expressions thoroughly to ensure they behave as expected with your target strings. By following these guidelines, you\u2019ll create patterns that are robust, efficient, and easy to manage.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-common-mistakes-to-avoid\">Common Mistakes to Avoid<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Even experienced users can run into trouble with regular expressions if they\u2019re not careful. One common mistake is forgetting to escape special characters like &#8220;` .<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n or ```\n*\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">, which can cause your pattern to match unintended characters or sequences. Misusing character classes or quantifiers can also lead to incorrect matches, so it\u2019s important to understand how each part of your pattern works.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Another pitfall is the unnecessary use of capturing groups, which can slow down performance and clutter your results. Instead, use non-capturing groups when you don\u2019t need to extract a specific part of the match. Failing to test your patterns with a variety of input strings can result in unexpected behavior, so always validate your expressions before deploying them. Finally, not taking advantage of possessive quantifiers can lead to inefficient matching and performance issues. By being aware of these common mistakes, you can write cleaner, more reliable regular expressions for your CRM needs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-tips-and-resources\">Tips and Resources<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We\u2019ve included a REGEX cheat sheet, quick reference, and full reference within the InvestGlass help center, so users can build, test, and apply their expressions effectively. If you\u2019re unsure where to begin, start with an online tool to test regex matches against your target string, then apply that expression in your CRM configuration. These platforms also allow you to test regular expressions interactively before using them in production.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"599\" src=\"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/CleanShot-2025-06-23-at-13.45.07.gif\" alt=\"\" class=\"wp-image-47719\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-built-for-sovereignty-and-trust\">Built for Sovereignty and Trust<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">InvestGlass remains hosted entirely in Switzerland, giving our customers full control over data residency, <strong>case-sensitive<\/strong> records, and compliance. Whether filtering based on <strong>case insensitivity<\/strong> or identifying patterns at the <strong>current position<\/strong> of an entry, our REGEX tool provides both flexibility and precision.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As data becomes more complex and expectations for clean, actionable records rise, <strong>regular expressions<\/strong> are no longer just for developers they are essential tools for CRM users, data managers, and regulators alike.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-future-of-pattern-matching-in-crm\">Future of Pattern Matching in CRM<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The landscape of pattern matching in CRM is rapidly evolving, driven by advances in regular expressions, machine learning, and natural language processing. As CRM systems increasingly rely on regular expressions for data validation, segmentation, and automation, we can expect even more sophisticated matching capabilities. The integration of regular expressions with technologies like entity recognition and intent detection will enable smarter, context-aware data processing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Emerging algorithms, such as fuzzy and semantic matching, will further enhance the accuracy and flexibility of pattern matching, allowing CRM platforms to better understand and act on complex customer data. User-friendly interfaces and intuitive tools will make it easier for non-technical users to harness the power of regular expressions, democratizing access to advanced data management features. As these innovations continue, regular expressions will remain at the heart of effective CRM, driving better customer experiences and business outcomes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-ready-to-get-started-with-regulat\">Ready to Get Started with regulat?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">REGEX Automation is available now to all InvestGlass users. It allows you to bring structure to your data, logic to your workflows, and clarity to your records all while maintaining the privacy and sovereignty that define our platform.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Request a demo or explore our knowledge base for examples, use cases, and ready-to-use patterns.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Why REGEX Matters in CRM InvestGlass is proud to announce a major enhancement to our Swiss Sovereign CRM platform: REGEX Automation. Short for Regular Expressions, REGEX is a method for identifying patterns within text. In a CRM environment, the ability to define and apply a regular expression pattern across contact records and form inputs offers [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":47725,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[19],"class_list":["post-47717","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-article","tag-crm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.6.1 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>What is regex used for? | InvestGlass<\/title>\n<meta name=\"description\" content=\"Why REGEX Matters in CRM InvestGlass is proud to announce a major enhancement to our Swiss Sovereign CRM platform: REGEX Automation. Short for Regular\" \/>\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.investglass.com\/nl\/waar-wordt-regex-voor-gebruikt\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is regex used for?\" \/>\n<meta property=\"og:description\" content=\"Why REGEX Matters in CRM InvestGlass is proud to announce a major enhancement to our Swiss Sovereign CRM platform: REGEX Automation. Short for Regular\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.investglass.com\/nl\/waar-wordt-regex-voor-gebruikt\/\" \/>\n<meta property=\"og:site_name\" content=\"InvestGlass\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-23T11:47:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-23T11:53:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/a-c-51r5d7Bs4z4-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1517\" \/>\n\t<meta property=\"og:image:height\" content=\"2048\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"InvestGlass\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@investglass\" \/>\n<meta name=\"twitter:site\" content=\"@investglass\" \/>\n<meta name=\"twitter:label1\" content=\"Geschreven door\" \/>\n\t<meta name=\"twitter:data1\" content=\"InvestGlass\" \/>\n\t<meta name=\"twitter:label2\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minuten\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Waar wordt regex voor gebruikt? | InvestGlass","description":"Waarom REGEX belangrijk is in CRM InvestGlass kondigt met trots een belangrijke verbetering aan van ons CRM-platform Swiss Sovereign: REGEX Automatisering. Afkorting van Regular","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.investglass.com\/nl\/waar-wordt-regex-voor-gebruikt\/","og_locale":"nl_NL","og_type":"article","og_title":"What is regex used for?","og_description":"Why REGEX Matters in CRM InvestGlass is proud to announce a major enhancement to our Swiss Sovereign CRM platform: REGEX Automation. Short for Regular","og_url":"https:\/\/www.investglass.com\/nl\/waar-wordt-regex-voor-gebruikt\/","og_site_name":"InvestGlass","article_published_time":"2025-06-23T11:47:56+00:00","article_modified_time":"2025-06-23T11:53:18+00:00","og_image":[{"width":1517,"height":2048,"url":"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/a-c-51r5d7Bs4z4-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"InvestGlass","twitter_card":"summary_large_image","twitter_creator":"@investglass","twitter_site":"@investglass","twitter_misc":{"Geschreven door":"InvestGlass","Geschatte leestijd":"8 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#article","isPartOf":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/"},"author":{"name":"InvestGlass","@id":"https:\/\/www.investglass.com\/#\/schema\/person\/4682ebae5d718a2ed1b77c9dab0a1f24"},"headline":"What is regex used for?","datePublished":"2025-06-23T11:47:56+00:00","dateModified":"2025-06-23T11:53:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/"},"wordCount":1601,"publisher":{"@id":"https:\/\/www.investglass.com\/#organization"},"image":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#primaryimage"},"thumbnailUrl":"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/a-c-51r5d7Bs4z4-unsplash-scaled.jpg","keywords":["CRM"],"articleSection":["Article"],"inLanguage":"nl-NL","copyrightYear":"2025","copyrightHolder":{"@id":"https:\/\/www.investglass.com\/nl\/#organization"}},{"@type":"WebPage","@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/","url":"https:\/\/www.investglass.com\/what-is-regex-used-for\/","name":"Waar wordt regex voor gebruikt? | InvestGlass","isPartOf":{"@id":"https:\/\/www.investglass.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#primaryimage"},"image":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#primaryimage"},"thumbnailUrl":"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/a-c-51r5d7Bs4z4-unsplash-scaled.jpg","datePublished":"2025-06-23T11:47:56+00:00","dateModified":"2025-06-23T11:53:18+00:00","description":"Waarom REGEX belangrijk is in CRM InvestGlass kondigt met trots een belangrijke verbetering aan van ons CRM-platform Swiss Sovereign: REGEX Automatisering. Afkorting van Regular","breadcrumb":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.investglass.com\/what-is-regex-used-for\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#primaryimage","url":"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/a-c-51r5d7Bs4z4-unsplash-scaled.jpg","contentUrl":"https:\/\/www.investglass.com\/wp-content\/uploads\/2025\/06\/a-c-51r5d7Bs4z4-unsplash-scaled.jpg","width":1517,"height":2048},{"@type":"BreadcrumbList","@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"InvestGlass","item":"https:\/\/www.investglass.com\/"},{"@type":"ListItem","position":2,"name":"What is regex used for?"}]},{"@type":"WebSite","@id":"https:\/\/www.investglass.com\/#website","url":"https:\/\/www.investglass.com\/","name":"InvestGlass","description":"De Zwitserse soevereine CRM","publisher":{"@id":"https:\/\/www.investglass.com\/#organization"},"alternateName":"InvestGlass","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.investglass.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":["Organization","Place"],"@id":"https:\/\/www.investglass.com\/#organization","name":"InvestGlass","url":"https:\/\/www.investglass.com\/","logo":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#local-main-organization-logo"},"image":{"@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#local-main-organization-logo"},"sameAs":["https:\/\/x.com\/investglass","https:\/\/www.linkedin.com\/company\/investglass\/","https:\/\/www.youtube.com\/channel\/UCt5r5XgzbSq2KhguJQxCwyA"],"telephone":[],"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],"opens":"09:00","closes":"17:00"}]},{"@type":"Person","@id":"https:\/\/www.investglass.com\/#\/schema\/person\/4682ebae5d718a2ed1b77c9dab0a1f24","name":"InvestGlass","image":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/secure.gravatar.com\/avatar\/8fb928ff37ca45def17ac75d6e799fb75f3f24f123aa31be169bfaf65f59dd40?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8fb928ff37ca45def17ac75d6e799fb75f3f24f123aa31be169bfaf65f59dd40?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8fb928ff37ca45def17ac75d6e799fb75f3f24f123aa31be169bfaf65f59dd40?s=96&d=mm&r=g","caption":"InvestGlass"},"sameAs":["https:\/\/www.investglass.com"],"url":"https:\/\/www.investglass.com\/nl\/author\/axginvestglass-com\/"},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/www.investglass.com\/what-is-regex-used-for\/#local-main-organization-logo","url":"https:\/\/www.investglass.com\/wp-content\/uploads\/2023\/10\/InvestGlass-blue2.png","contentUrl":"https:\/\/www.investglass.com\/wp-content\/uploads\/2023\/10\/InvestGlass-blue2.png","width":839,"height":192,"caption":"InvestGlass"}]}},"_links":{"self":[{"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/posts\/47717","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/comments?post=47717"}],"version-history":[{"count":0,"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/posts\/47717\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/media\/47725"}],"wp:attachment":[{"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/media?parent=47717"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/categories?post=47717"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.investglass.com\/nl\/wp-json\/wp\/v2\/tags?post=47717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}