Pulling String Before & After Characters
I'm trying to trim email addresses after the @ and before the . So for example if your email is [email protected]. I just want to return "domo." I'm using the formula tile in Magic ETL.
Best Answers
-
Using the Replace Text tile, do the following:
The 2nd one is a bit hard to read in the screenshot, it is: \ . . *
Be sure to check "use regex" for both as shown below:If I solved your problem, please "accept" my answer as the solution
2 -
Using a formula tile you can use a regexp_replace function to extract just the domain:
REGEXP_REPLACE(`email`, '^[^@]+@([^\.]+)\..*$', '$1')
^ - match the beginning of the string
[^@]+ - Match 1 or more (+) of characters that are NOT (^) the @ symbol.
@ - match the literal @ symbol
[^\.]+
() - Store this for later reference in a match variable. Since this is the first instance it's stored in $1
[^\.]+ - Match 1 or more (+) of characters that are NOT (^) the . symbol. \ is to escape the . character as it has special meaning in regular expressions of any character.
\. - match the literal . character
.* - match 0 or more (*) of any character (.)
$ - match the end of the string
$1 - Where the value between the parenthesis are stored.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2
Answers
-
Using the Replace Text tile, do the following:
The 2nd one is a bit hard to read in the screenshot, it is: \ . . *
Be sure to check "use regex" for both as shown below:If I solved your problem, please "accept" my answer as the solution
2 -
Using a formula tile you can use a regexp_replace function to extract just the domain:
REGEXP_REPLACE(`email`, '^[^@]+@([^\.]+)\..*$', '$1')
^ - match the beginning of the string
[^@]+ - Match 1 or more (+) of characters that are NOT (^) the @ symbol.
@ - match the literal @ symbol
[^\.]+
() - Store this for later reference in a match variable. Since this is the first instance it's stored in $1
[^\.]+ - Match 1 or more (+) of characters that are NOT (^) the . symbol. \ is to escape the . character as it has special meaning in regular expressions of any character.
\. - match the literal . character
.* - match 0 or more (*) of any character (.)
$ - match the end of the string
$1 - Where the value between the parenthesis are stored.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2
Categories
- All Categories
- 1.1K Product Ideas
- 1.1K Ideas Exchange
- 1.2K Connect
- 966 Connectors
- 254 Workbench
- Cloud Amplifier
- 1 Federated
- 2.4K Transform
- 75 SQL DataFlows
- 499 Datasets
- 1.8K Magic ETL
- 2.7K Visualize
- 2.2K Charting
- 360 Beast Mode
- 19 Variables
- 481 Automate
- 101 Apps
- 376 APIs & Domo Developer
- 6 Workflows
- 22 Predict
- 6 Jupyter Workspaces
- 16 R & Python Tiles
- 316 Distribute
- 64 Domo Everywhere
- 252 Scheduled Reports
- 59 Manage
- 59 Governance & Security
- 1 Product Release Questions
- 5K Community Forums
- 37 Getting Started
- 23 Community Member Introductions
- 63 Community Announcements
- 4.8K Archive