Splunk Search

How to remove everything after a specific character in a line

rijinc
Explorer

Currently i am not familiar with REx and replace commands in splunk. Can someone help me here
i want to replace to blank anything after fullstop

for ex :
Username
A1B1.;#12345

;#12345 this character needs to be removed.

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

| rex field=Username mode=sed "s/\..*$//"

View solution in original post

woodcock
Esteemed Legend

Like this:

| rex field=Username mode=sed "s/\..*$//"

rijinc
Explorer

Thanks Sir....it worked 🙂

0 Karma

sylinttest
New Member

I have a similar issue, in the Message field from a specific event code from the WinEventLogs it says

"A memeber was added to a security-enabled global group."
Subject:
Security ID:

I want everything after the period "group." gone. I tried the above rex however nothing changed.

0 Karma

to4kawa
Ultra Champion

(?s)
try this option.

0 Karma

sylinttest
New Member

I sorry I am very new to splunk where should I put that option in the search?

0 Karma

to4kawa
Ultra Champion
| makeresults
| eval _raw="\"A memeber was added to a security-enabled global group.\"
Subject:
Security ID:"
 | rex mode=sed "s/(?s)\..*$/./"

cf. regex101

0 Karma

to4kawa
Ultra Champion
| makeresults
| eval _raw="\"A memeber was added to a security-enabled global group.\"
 Subject:
 Security ID:"
 | rex "\"(?<_raw>.+)\""

I will do it like this.

0 Karma

rijinc
Explorer

i have got another requirement where

for ex :
Username
Lynn Chriss H;#12345

need to remove the values from full stop [;#12345] was tryin to use the above rex by interchanging some thing like this. It doesnt work ...
| rex field="Username" mode=sed "s/[A-Z]*$//"
?
Request your help on this

0 Karma

woodcock
Esteemed Legend

Oh, I see, my original answer also removed the . but you need to keep that, just do this:

 | rex field=Username mode=sed "s/\..*$/./"
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...