Splunk Search

How to remove data after the first period?

jpfrancetic
Path Finder

Hi Splunk Community,

I am trying to remove the data in a field after the first period. my field looks like this:

24611_abce.XXX.AAA.com
24612_r1q2e3.XXX.AAA.com
null
null
4iop45_q7w8e9.XXX.AAA.com
hki90lhf3_m1n2b3.QQQQ.AAA.com

 

I would like to remove everything after the first period for every row but the pattterns at the end do not match after the first period. It should look like this: 

24611_abce
24612_r1q2e3
null
null
4iop45_q7w8e9
hki90lhf3_m1n2b3

 

thanks in advance!

Labels (3)
0 Karma
1 Solution

mayurr98
Super Champion

 

In your environment, you should try:

<your search>
| rex field=<fieldname> "^(?<custom_fieldname>[^\.]+)"

 

try this run anywhere search:

 

| makeresults 
| eval data="24611_abce.XXX.AAA.com,24612_r1q2e3.XXX.AAA.com,null,null,4iop45_q7w8e9.XXX.AAA.com,hki90lhf3_m1n2b3.QQQQ.AAA.com" 
| makemv data delim="," 
| mvexpand data 
| rex field=data "^(?<data>[^\.]+)"

 

let me know if this helps!

 

View solution in original post

0 Karma

mayurr98
Super Champion

 

In your environment, you should try:

<your search>
| rex field=<fieldname> "^(?<custom_fieldname>[^\.]+)"

 

try this run anywhere search:

 

| makeresults 
| eval data="24611_abce.XXX.AAA.com,24612_r1q2e3.XXX.AAA.com,null,null,4iop45_q7w8e9.XXX.AAA.com,hki90lhf3_m1n2b3.QQQQ.AAA.com" 
| makemv data delim="," 
| mvexpand data 
| rex field=data "^(?<data>[^\.]+)"

 

let me know if this helps!

 

0 Karma

jpfrancetic
Path Finder

This worked like a charm. Thank you very much

Tags (1)
0 Karma
Get Updates on the Splunk Community!

Splunk Certification Support Alert | Pearson VUE Outage

Splunk Certification holders and candidates!  Please be advised of an upcoming system maintenance period for ...

Enterprise Security Content Update (ESCU) | New Releases

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

New in Observability - Improvements to Custom Metrics SLOs, Log Observer Connect & ...

The latest enhancements to the Splunk observability portfolio deliver improved SLO management accuracy, better ...