Reporting

How to extract two new fields from one existing field using regex?

evallja
Path Finder

Hello everyone,

I have a field named SQL_NAME with values as per below (I'm writing two of them):

#1(8):EMEMEB #2(14):8/3/2022 0:0:0 #3(13):Ememe Behe #4(3):409 #5(0):
#1(6):TSUDE #2(14):8/1/2022 0:0:0 #3(10):Tugu Sude #4(3):411 #5(0):

and I want to extract two fields named user and name with their values in the bold strings above using regular expression. Any idea?

Thank you in advance.

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Try this command.

| rex field=SQL_NAME "\d+\):(?<user>\S+).*?#3\(\d+\):(?<name>.*?)\s#"
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Try this command.

| rex field=SQL_NAME "\d+\):(?<user>\S+).*?#3\(\d+\):(?<name>.*?)\s#"
---
If this reply helps you, Karma would be appreciated.

evallja
Path Finder

Thanks a lot! That worked like a charm! 
May I ask if there is any regex generator that generates the regex form from just selecting a specific text?

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Splunk's Field Extractor feature will do that, but the expressions it generates are not optimal.

I have not used any other regex generators.

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...