Splunk Search

How to extract string between two character @ and >?

DavideASR
Engager

Hi,

I'm trying to extract string "domain.com" from <mail@domain.com>

How can i extract string between "@" and ">" ?

Thx

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @DavideASR,

please try this,

| rex "@(?<domain>[^\<]+)"

that you can test at https://regex101.com/r/Bffr7q/1 

if you have the above value in another field (e.g. email), you could use

| rex field=email "@(?<domain>[^\<]+)"

Ciao.

Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @DavideASR,

please try this,

| rex "@(?<domain>[^\<]+)"

that you can test at https://regex101.com/r/Bffr7q/1 

if you have the above value in another field (e.g. email), you could use

| rex field=email "@(?<domain>[^\<]+)"

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...