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
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!

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 ...

[Puzzles] Solve, Learn, Repeat: Tiling

This puzzle (first published here) is based on finding groups of tessellated tiles (inspired by floor tiles I ...

SOK it to Me: Top 3 Benefits of Using Splunk Operator on Kubernetes that’ll Make ...

    Thursday, July 9, 2026  |  11:00AM–12:00PM PDT Duration: 1 hour (includes Q&A) Managing can feel like a ...