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!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...