How can I get rid of extra characters in attributes

Hi all,
I have a field that lists carriers in an odd fashion such as below:
000001_BOSMAN_T_GND
000001_UPS2_A_F-EX
000001_UPS2_A_LTL
I'd like to get rid of the unnecessary characters at the beginning and the end so it looks like this:
BOSMAN
UPS2
Is there a Beastmode function or calculation that can help me do that? Would like to avoid Magic ETL if possible but open to doing that if necessary.
Best Answer
-
If it is always between the first and second underscore, you can do this:
SPLIT_PART(fieldname,'_',2)
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.3
Answers
-
Try something like this, replacing the field with your actual field name:
SUBSTRING(SUBSTRING(`FIeld`, INSTR(`FIeld`, '_')+1), 1, INSTR(SUBSTRING(`FIeld`, INSTR(`FIeld`, '_')+1), '_')-1)
1 -
If it is always between the first and second underscore, you can do this:
SPLIT_PART(fieldname,'_',2)
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.3 -
Here's a REGEXP version:
REGEXP_REPLACE(`field`, '^\d+-([^_]+).*$', '$1')
But as @MarkSnodgrass mentioned if your format is consistent where values are after the first underscore with a following underscore then SPLIT_PART is an easier option.
The REGEX version will handle cases where there's no following underscore
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2 -
Thank you @Sean_Tully @MarkSnodgrass @GrantSmith !
Your answers are very insightful and helpful. I will definitely add them to my toolkit. I ended up using Mark's SPLIT_PART function as that was easiest and fit my criteria.
2
Categories
- All Categories
- 1.9K Product Ideas
- 1.9K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 306 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3K Transform
- 112 SQL DataFlows
- 649 Datasets
- 2.2K Magic ETL
- 4K Visualize
- 2.5K Charting
- 787 Beast Mode
- 78 App Studio
- 43 Variables
- 743 Automate
- 187 Apps
- 474 APIs & Domo Developer
- 67 Workflows
- 15 DomoAI
- 40 Predict
- 17 Jupyter Workspaces
- 23 R & Python Tiles
- 406 Distribute
- 117 Domo Everywhere
- 279 Scheduled Reports
- 10 Software Integrations
- 139 Manage
- 136 Governance & Security
- 8 Domo Community Gallery
- 44 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 113 Community Announcements
- 4.8K Archive