Reporting

Convert Name to Email

Becherer
Explorer

I am looking to convert a field labeled "name" to populate email.

I am wanting to have a search that takes a name in a field and formats it to match our certain naming convention.

If the field has a name of Jim Smith, I want a second field to covert the name of Jim Smith to Jim.Smith@domain.com

I am looking to replace the space between the first and last name with a "." and add @domain.com after the lastname.

What the best way about going about this?

Labels (1)
0 Karma
1 Solution

nickhills
Ultra Champion

There are lots of edge cases that can break this but try:

 

| makeresults 
| eval name="Jim Smith" 
| rex field=name "(?P<firstName>\w+)\s(?P<surName>\w+)" 
| eval email=firstName.".".surName."@yourdomain.com"

 

 

If my comment helps, please give it a thumbs up!

View solution in original post

0 Karma

Becherer
Explorer

@nickhills 

One more thing- There is a second group of names that have a "name\Jim.Smith".

Is there a way to remove the "name\" and add @domain.com after. There is no need to add a "." for this group because it's already added.

 

Just didn't know if it's possible to have what you sent over to look for two possibilities. 

 

Thank you for your help! The first one worked, now I am just wanting to capture the remaining 20%.

0 Karma

nickhills
Ultra Champion

There are lots of edge cases that can break this but try:

 

| makeresults 
| eval name="Jim Smith" 
| rex field=name "(?P<firstName>\w+)\s(?P<surName>\w+)" 
| eval email=firstName.".".surName."@yourdomain.com"

 

 

If my comment helps, please give it a thumbs up!
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...