Splunk Search

tr like command? Phone Numbers different format in 2 data sources and I want to Join them

rkirkw
Path Finder

Is there anything like the UNIX tr command in splunk?

In one data source I have phone numbers like (800) 555-4444 and in another data source the phone numbers are formatted like 800-555-4444. I would like to do a join between these two data sources on the phone number but cannot as they do not match.

It could look like this:
echo "(800) 555-4444" | tr -d "()" | tr " " -

outputs 800-555-4444

So other than using sed, awk or tr on the data before it gets to splunk can this be done on the fly?

Tags (3)

kristian_kolb
Ultra Champion

You could have a look at these section in the manual for making the changes before indexing

http://docs.splunk.com/Documentation/Splunk/5.0.1/Data/Anonymizedatausingconfigurationfiles

or you can do it at search time with combinations of eval and rex

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Rex
http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Eval

Hope this helps,

Kristian

rkirkw
Path Finder

This worked well
| rex mode=sed "s/(/""/g" | rex mode=sed "s/ ) /"-"/g"
It converted (888) 555-4444 to 888-555-4444
Probably be faster in transforms.conf.
Now, does it really work for a join?

0 Karma

rkirkw
Path Finder

Thanks!
That helps. I am going to try something like this
| rex mode=sed "s/(/""/g" | rex mode=sed "s/) /"-"/g"
Will update here if it works!

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...

Monitoring AI Agents with Splunk Observability Cloud

Let’s say I’m running a travel planning AI app in production. A user asks for three concise hotel options in ...