{"id":12921,"date":"2022-10-11T00:00:00","date_gmt":"2022-10-11T00:00:00","guid":{"rendered":"https:\/\/e-dialog.group\/blog\/regexp-8211-how-to-make-preparing-data-easier\/"},"modified":"2026-02-26T13:38:18","modified_gmt":"2026-02-26T13:38:18","slug":"regexp-8211-how-to-make-preparing-data-easier","status":"publish","type":"post","link":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/","title":{"rendered":"Regexp 8211 How To Make Preparing Data Easier"},"content":{"rendered":"<p>We explain the 3 most important and useful RegExp formulas and how you can use them::<\/p>\n<ol>\n<li>REGEXP_EXTRACT<\/li>\n<li>REGEXP_MATCH<\/li>\n<li>REGEXP_CONTAINS<\/li>\n<\/ol>\n<h2>Prepare data with RegExp formulas<\/h2>\n<p>Basically, a RegExp formula is made up of the data source, the dimension and the formula itself. For example, Campaign Manager, DV360, and Google Analytics are commonly used data sources for dashboards.<\/p>\n<p>The dimensions come from the data source. &ldquo;Placement&rdquo; can be taken from a Campaign Manager data source and &ldquo;Insertion Order&rdquo; from a DV360 data source &ndash; but mixing does not work. This requires a data blend specifically for the dashboard, or a BigQuery data source that can be accessed again and again.<\/p>\n<p>There are two different ways to create RegExp formulas in Data Studio. Only for a specific table or as another dimension for the entire dashboard.<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/blogartikel-regexp-formeln-bild.png\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" srcset=\"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/blogartikel-regexp-formeln-bild.png 722w, https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/blogartikel-regexp-formeln-bild-300x251.png 300w\" alt=\"Blog RegExp - RegExp Formel in Data Studio erstellen\" width=\"722\" height=\"605\"><strong>Create a RegExp formula in Data Studio:<\/strong>1.: For the selected table \/ 2.: For the dashboard<\/p>\n<p>To use RegExp formulas, we still need a basic understanding of the different characters that can be used to create the formula. There is still<a href=\"https:\/\/support.google.com\/datastudio\/answer\/10496674?hl=en&amp;ref_topic=7570421\">some more<\/a>, but here the most important ones are briefly explained:<\/p>\n<h3>The dot and the asterisk<\/h3>\n<p>To replace words and numbers in a RegExp formula without having to specify every possible combination, dot-asterisk ( .* ) can be used. The dot ( . ) is a symbol for a character in RegExp. So it stands for letters, numbers and special characters that can be used in the name.<\/p>\n<p>The asterisk ( * ) indicates that there is a longer number of characters &ndash; thus covering an entire word. Dot-Asterisk replaces the characters in a formula until it encounters the next character specified in the RegExp formula. Therefore, it is common to use hyphae ( &ndash; ) or underscores ( _ ) in terms to simplify working with RegExp formulas.<\/p>\n<p>For example, for<\/p>\n<p>Awareness_Subject<\/p>\n<p>Engagement_Subject<\/p>\n<p>not two formulas can be created, but only one<\/p>\n<p>.*_Subject<\/p>\n<p>In this case, the dot asterisk replaces both &ldquo;awareness&rdquo; and &ldquo;engagement&rdquo;.<\/p>\n<h3>The pipe<\/h3>\n<p>Pipes ( | ) are used in RegExp formulas to specify two words at the same time in a formula. For example, several formats can be taken together:<\/p>\n<p>(HPA|MediumRectangle)<\/p>\n<h3>The brackets and quotation marks<\/h3>\n<p>Brackets are used in two different ways in RegExp formulas. On the one hand, every RegExp formula needs a round bracket ( ( &amp; ) ) at the beginning and end of the function to delimit it.<\/p>\n<p>The second function of the parentheses is to highlight part of the dimension name. More about this in the examples for REGEXP_EXTRACT and REGEXP_MATCH<\/p>\n<p>The quotation marks (&ldquo; &ldquo;) are placed at the beginning and end of the text used in the RegExp formula. Both for the name of the dimension and for the self-selected text that is specified in the formula.<\/p>\n<h3>The REGEXP data set<\/h3>\n<p>The following data set is used for the following examples:<\/p>\n<p>Display_Awareness_HPA_Cat<\/p>\n<p>Display_Awareness_HPA_Dog<\/p>\n<p>Display_Awareness_MediumRectangle_Cat<\/p>\n<p>Display_Awareness_MediumRectangle_Dog<\/p>\n<p>Display_Engagement_HPA_Cat<\/p>\n<p>Display_Engagement_HPA_Dog<\/p>\n<p>Display_Engagement_MediumRectangle_Cat<\/p>\n<p>Display_Engagement_MediumRectangle_Dog<\/p>\n<p>From this, information can be drawn about the channel (display or video), the funnel level (awareness or engagement), the format (HPA, medium rectangle or preroll) and the subject (cat or dog).<\/p>\n<p>In order to use RegExp formulas, it is important that the naming of the dimensions is consistent and correct.<\/p>\n<h3>REGEXP_EXTRACT<\/h3>\n<p>The EXTRACT formula is used to pull individual words from the dimension. For example, the funnel stage &ndash; awareness or engagement &ndash; can be taken from the data set:<\/p>\n<p>REGEX_EXTRACT (Placement,(Awareness|Engagement))<br>\nResult:<br>\nCommitment<br>\nAwareness<\/p>\n<p>Since there is both awareness and engagement, these are summarized with a pipe in the formula. The example data set of 12 lines becomes 2 &ndash; one line per funnel level.<\/p>\n<p>However, the formula can also be applied more flexibly. If there are further funnel levels (e.g. performance or loyalty), these can either be added or read out using the dot asterisk ( .* ).<\/p>\n<p>The advantage of the dot asterisk ( .* ) is that not all possible funnel stages have to be listed. This flexibility is particularly helpful with varying names, such as subject names.<\/p>\n<p>REGEX_EXTRACT (Placement,&rdquo;Display_(.*)_.*&rdquo;)<\/p>\n<p style=\"padding-left: 280px;\">Display_Engagement_MediumRectangle_Cat<\/p>\n<p style=\"padding-left: 280px;\">Display_Awareness_HPA_Dog<\/p>\n<p>Result:<\/p>\n<p>Commitment<\/p>\n<p>Awareness<\/p>\n<p>This formula is a little more complex in structure because the exact words are no longer specified. The formula must go to the place where the words are located.<\/p>\n<p>The structure of the formula is as follows:<\/p>\n<p>REGEX_EXTRACT ( &nbsp; )<\/p>\n<p>Placement<\/p>\n<p>,<\/p>\n<p>= the<strong>function<\/strong>that is used<\/p>\n<p>= the<strong>dimension<\/strong>that is used<\/p>\n<p>= the decimal place after the dimension indicates that now the<strong>Rule<\/strong>the function<strong>follows<\/strong>.<\/p>\n<p>&rdquo;Display_<\/p>\n<p>(.*)<\/p>\n<p>_.*&rdquo;)<\/p>\n<p>= the beginning of the placement name<\/p>\n<p>= with the<strong>Brackets<\/strong>is signaled that this word &ndash; replaced by dot-asterisk &ndash;<strong>taken out<\/strong>will<\/p>\n<p>= through the last dot asterisk the<strong>rest<\/strong>the placement name<strong>replaced<\/strong>.<\/p>\n<p>With the<strong>quotation marks<\/strong>becomes the dimension name<strong>enclosed<\/strong>and with that<strong>round bracket<\/strong>the<strong>RegExp formula<\/strong>.<\/p>\n<p>In the example data set, all lines start the same, with &ldquo;Display_&rdquo;, which makes use of the formula. However, if the lines have different beginnings, such as &ldquo;Display_&rdquo; and &ldquo;Video_&rdquo;, the beginning can also be replaced with a dot asterisk ( .* ).<\/p>\n<p>REGEX_EXTRACT(Placement,&rdquo;.*_(.*)_.*&rdquo;)<\/p>\n<p style=\"padding-left: 280px;\">Display_Engagement_MediumRectangle_Cat<\/p>\n<p style=\"padding-left: 280px;\">Display_Awareness_HPA_Dog<\/p>\n<p>Result:<\/p>\n<p>Commitment<\/p>\n<p>Awareness<\/p>\n<p>Using the same logic, words that later appear in the placement name can also be removed. For example, this formula takes out the format:<\/p>\n<p>REGEX_EXTRACT(Placement,&rdquo;.*_.*_(.*)_.*&rdquo;)<\/p>\n<p style=\"padding-left: 280px;\">Display_Engagement_MediumRectangle_Cat<\/p>\n<p style=\"padding-left: 280px;\">Display_Awareness_HPA_Dog<\/p>\n<p>Result:<\/p>\n<p>MediumRectangle<\/p>\n<p>HPA<\/p>\n<p>EXTRACT is suitable for quickly summarizing and analyzing data.<\/p>\n<h3>REGEXP_MATCH<\/h3>\n<p>The MATCH function is used in conjunction with another function. Data Studio can be used to assign all matched rows to a category.<\/p>\n<p>CASE<br>\nWHEN (REGEXP_MATCH Formula 1) THEN &ldquo;Category 1&rdquo;<br>\nWHEN (REGEXP_MATCH Formula 2) THEN &ldquo;Category 2&rdquo;<br>\nELSE &ldquo;missing value&rdquo;<br>\nEND<\/p>\n<p>Since this is a self-programmed field, it is important to use CASE at the beginning and END at the end to narrow down the function.<\/p>\n<p>WHEN describes the condition under which THEN occurs. ELSE must be used with WHEN formulas &ndash; this makes it possible to combine everything that does not fall into the previously determined categories, or to display an error message.<\/p>\n<p>The structure of the pure MATCH RegExp formula is similar to the EXTRACT formula:<\/p>\n<p>REGEXP_MATCH(Placement,&rdquo;.*_(Cat|Dog)&rdquo;)<\/p>\n<p style=\"padding-left: 280px;\">Display_Engagement_Medium Rectangle_Cat<\/p>\n<p style=\"padding-left: 280px;\">Display_Awareness_HPA_Dog<\/p>\n<p>Together with the WHEN &ndash; THEN function, for example, a category can be defined for the subject:<\/p>\n<p>CASE<br>\nWHEN REGEXP_MATCH(Placement,&rdquo;.*_(Cat|Dog)&rdquo;) THEN &ldquo;Animal&rdquo;<br>\nELSE (&ldquo;other&rdquo;)<br>\nEND<\/p>\n<p>Result:<br>\nanimal<\/p>\n<p>The MATCH formula is also suitable for reprocessing abbreviations that are in the placement name:<\/p>\n<p>CASE<br>\nWHEN REGEXP_MATCH(Placement,&rdquo;.*_(HPA)_.*&rdquo;) THEN &ldquo;Half Page Ad&rdquo;<br>\nELSE (&ldquo;other&rdquo;)<br>\nEND<\/p>\n<p>Result:<br>\nHalf Page Ad<\/p>\n<p>MATCH in conjunction with WHEN &ndash; THEN is one of the most flexible functions in Data Studio.<\/p>\n<h3>REGEXP_CONTAINS<\/h3>\n<p>Unlike the functions discussed so far, CONTAINS does not return a word or category, but rather whether a statement is TRUE or FALSE.<\/p>\n<p>It should therefore be the formula:<\/p>\n<p>REGEX_CONTAINS (Placement,&rdquo;Display&rdquo;)<\/p>\n<p style=\"padding-left: 280px;\">Display_Engagement_MediumRectangle_Cat<\/p>\n<p style=\"padding-left: 280px;\">Display_Awareness_HPA_Dog<\/p>\n<p>result in TRUE for all lines of the example data set.<\/p>\n<p>CONTAINS is not used in data analysis, but rather helps troubleshooting to find typos or incorrect naming orders.<\/p>\n<h2>Conclusion:<\/h2>\n<p>With RegExp formulas, data sets can be summarized, analyzed and controlled efficiently, and they also make working with large data sets easier. We promise, after the initial shock is over, it&rsquo;ll be great fun!<\/p>\n<h3>Would you like to learn more about RegExp and need help with your dashboards? Contact us via<a href=\"mailto:kontakt@e-dialog.group\">kontakt@e-dialog.group<\/a><\/h3>\n","protected":false},"excerpt":{"rendered":"<p>RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,&#8230;) &#8211; although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly.<br \/>\nIn order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.<\/p>\n","protected":false},"author":1,"featured_media":4804,"comment_status":"closed","ping_status":"open","sticky":false,"template":"post-old.php","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[5,446],"channel":[452],"goal":[460],"technology":[],"c-year":[48],"class_list":["post-12921","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-analytics","category-campaigns","channel-display","goal-brand-awareness","c-year-48"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Regexp 8211 How To Make Preparing Data Easier - e-dialog<\/title>\n<meta name=\"description\" content=\"RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,...) - although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly. In order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Regexp 8211 How To Make Preparing Data Easier\" \/>\n<meta property=\"og:description\" content=\"RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,...) - although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly. In order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/\" \/>\n<meta property=\"og:site_name\" content=\"e-dialog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/edialog.group\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-11T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T13:38:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2200\" \/>\n\t<meta property=\"og:image:height\" content=\"1180\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"digitalists\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"digitalists\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/\"},\"author\":{\"name\":\"digitalists\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/person\\\/7b481e2ac90c21e4dc393821d35bb518\"},\"headline\":\"Regexp 8211 How To Make Preparing Data Easier\",\"datePublished\":\"2022-10-11T00:00:00+00:00\",\"dateModified\":\"2026-02-26T13:38:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/\"},\"wordCount\":1214,\"publisher\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"articleSection\":[\"Analytics\",\"Campaigns\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/\",\"name\":\"Regexp 8211 How To Make Preparing Data Easier - e-dialog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"datePublished\":\"2022-10-11T00:00:00+00:00\",\"dateModified\":\"2026-02-26T13:38:18+00:00\",\"description\":\"RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,...) - although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly. In order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#primaryimage\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"contentUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"width\":2200,\"height\":1180,\"caption\":\"|\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/regexp-8211-how-to-make-preparing-data-easier\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Regexp 8211 How To Make Preparing Data Easier\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/\",\"name\":\"e-dialog\",\"description\":\"Data-driven Marketing &amp; Strategie\",\"publisher\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#organization\",\"name\":\"e-dialog\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/e-dialog-logo.svg\",\"contentUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/e-dialog-logo.svg\",\"width\":1,\"height\":1,\"caption\":\"e-dialog\"},\"image\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/edialog.group\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/e-dialog-gmbh\\\/\",\"https:\\\/\\\/www.instagram.com\\\/e_dialog\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@e_dialog\"],\"description\":\"Bei e-dialog gestalteten wir gemeinsam die Zukunft des data-driven Marketings - mit einem gro\u00dfartigen Team aus passionierten Expert*innen.\",\"email\":\"kontakt@e-dialog.group\",\"telephone\":\"+43 1 309 09 09\",\"legalName\":\"e-dialog GmbH\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/person\\\/7b481e2ac90c21e4dc393821d35bb518\",\"name\":\"digitalists\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g\",\"caption\":\"digitalists\"},\"sameAs\":[\"https:\\\/\\\/e-dialog.group\"],\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/author\\\/digitalists\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Regexp 8211 How To Make Preparing Data Easier - e-dialog","description":"RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,...) - although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly. In order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.","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:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/","og_locale":"en_US","og_type":"article","og_title":"Regexp 8211 How To Make Preparing Data Easier","og_description":"RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,...) - although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly. In order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.","og_url":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/","og_site_name":"e-dialog","article_publisher":"https:\/\/www.facebook.com\/edialog.group","article_published_time":"2022-10-11T00:00:00+00:00","article_modified_time":"2026-02-26T13:38:18+00:00","og_image":[{"width":2200,"height":1180,"url":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","type":"image\/png"}],"author":"digitalists","twitter_card":"summary_large_image","twitter_misc":{"Written by":"digitalists","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#article","isPartOf":{"@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/"},"author":{"name":"digitalists","@id":"https:\/\/e-dialog.group\/en\/#\/schema\/person\/7b481e2ac90c21e4dc393821d35bb518"},"headline":"Regexp 8211 How To Make Preparing Data Easier","datePublished":"2022-10-11T00:00:00+00:00","dateModified":"2026-02-26T13:38:18+00:00","mainEntityOfPage":{"@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/"},"wordCount":1214,"publisher":{"@id":"https:\/\/e-dialog.group\/en\/#organization"},"image":{"@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#primaryimage"},"thumbnailUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","articleSection":["Analytics","Campaigns"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/","url":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/","name":"Regexp 8211 How To Make Preparing Data Easier - e-dialog","isPartOf":{"@id":"https:\/\/e-dialog.group\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#primaryimage"},"image":{"@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#primaryimage"},"thumbnailUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","datePublished":"2022-10-11T00:00:00+00:00","dateModified":"2026-02-26T13:38:18+00:00","description":"RegExp formulas help with the analysis and preparation of data in various online marketing programs (e.g. Data Studio, Google Analytics,...) - although they are often intimidating due to their complex appearance, with calm, patience and a curious mindset, the basics can be learned quickly. In order to use RegExp formulas efficiently, it is important that the naming of dimensions is consistent and correct.","breadcrumb":{"@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#primaryimage","url":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","contentUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","width":2200,"height":1180,"caption":"|"},{"@type":"BreadcrumbList","@id":"https:\/\/e-dialog.group\/en\/blog\/regexp-8211-how-to-make-preparing-data-easier\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/e-dialog.group\/en\/"},{"@type":"ListItem","position":2,"name":"Regexp 8211 How To Make Preparing Data Easier"}]},{"@type":"WebSite","@id":"https:\/\/e-dialog.group\/en\/#website","url":"https:\/\/e-dialog.group\/en\/","name":"e-dialog","description":"Data-driven Marketing &amp; Strategie","publisher":{"@id":"https:\/\/e-dialog.group\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/e-dialog.group\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/e-dialog.group\/en\/#organization","name":"e-dialog","url":"https:\/\/e-dialog.group\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/e-dialog.group\/en\/#\/schema\/logo\/image\/","url":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/06\/e-dialog-logo.svg","contentUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/06\/e-dialog-logo.svg","width":1,"height":1,"caption":"e-dialog"},"image":{"@id":"https:\/\/e-dialog.group\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/edialog.group","https:\/\/www.linkedin.com\/company\/e-dialog-gmbh\/","https:\/\/www.instagram.com\/e_dialog\/","https:\/\/www.tiktok.com\/@e_dialog"],"description":"Bei e-dialog gestalteten wir gemeinsam die Zukunft des data-driven Marketings - mit einem gro\u00dfartigen Team aus passionierten Expert*innen.","email":"kontakt@e-dialog.group","telephone":"+43 1 309 09 09","legalName":"e-dialog GmbH"},{"@type":"Person","@id":"https:\/\/e-dialog.group\/en\/#\/schema\/person\/7b481e2ac90c21e4dc393821d35bb518","name":"digitalists","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g","caption":"digitalists"},"sameAs":["https:\/\/e-dialog.group"],"url":"https:\/\/e-dialog.group\/en\/blog\/author\/digitalists\/"}]}},"_links":{"self":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts\/12921","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/comments?post=12921"}],"version-history":[{"count":1,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts\/12921\/revisions"}],"predecessor-version":[{"id":13367,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts\/12921\/revisions\/13367"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/media\/4804"}],"wp:attachment":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/media?parent=12921"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/categories?post=12921"},{"taxonomy":"channel","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/channel?post=12921"},{"taxonomy":"goal","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/goal?post=12921"},{"taxonomy":"technology","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/technology?post=12921"},{"taxonomy":"c-year","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/c-year?post=12921"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}