Splunk Search

How to Standardize email to output "First Last" to a new field?

migullmills
Explorer

I am having issue finding a way to standardize email for a query that will make the output "First Last" to a new field. 

there are mainly two email types in "first.x.last@domain.com" or "first.last@domain.com"

The first works for "first.x.last@domain.com": 

| makeresults
| eval name="first.x.last@domain.com"
| rex field=name "^(?<Name>[^@]+)"
| eval tmp=split(Name,".")
| eval tmp2=split(Name,".")
| eval FullName=mvindex(tmp,0) | eval FName=mvindex(tmp2,2) | table FullName FName | eval newName=mvappend(FullName,FName) | eval FN=mvjoin(newName, " ")
| table FN 

And this for "first.last@domain.com"

| makeresults
| eval name="first.last@domain.com"
| rex field=name "^(?<Name>[^@]+)"
| eval tmp=split(Name,".") | eval FullName=mvindex(tmp,0,1) | eval FN=mvjoin(FullName, " ")
| table FN


Any recommendations of how to accomplish getting an output of "First Last" to one field for both email types? 

Labels (3)
Tags (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

This rex command will extract first and last names from both formats.

 

| rex "(?<first>[^\.]+)\.(?:\w\.)?(?<last>[^@]+)"
| eval FullName = first . " " . last

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

This rex command will extract first and last names from both formats.

 

| rex "(?<first>[^\.]+)\.(?:\w\.)?(?<last>[^@]+)"
| eval FullName = first . " " . last

 

---
If this reply helps you, Karma would be appreciated.

migullmills
Explorer

This worked, I couldn't get the regex right. 

 

I was using to pass as a subsearch so the only thing I need was to add the "quotes" around it. So I did a mvindex and added format on the end. 

 

Thank you!

yuanliu
SplunkTrust
SplunkTrust

If the end goal just to combine the assumed first and last with a space, why not just do that literally?  Like

 

| eval name = split(mvindex(split(name, "@"), 0), ".")
| eval FN = mvindex(name, 0) . " " . mvindex(name, -1)

 

Here is an emulation that you can run and compare with real data

 

| makeresults
| eval name=mvappend("first1.x.last1@domain.com", "first2.last2@domain.com")
| mvexpand name
``` data emulation above ```

 

 The output is something like

FN
name
first1 last1
first1
x
last1
first2 last2
first2
last2
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...