Splunk Search

How do I remove specific characters from a string?

joachimroshan
New Member

For example, I have a string "agreementinquiry-web-2.0.3". My result should only have "agreementinquiry".

Tags (1)
0 Karma

skoelpin
SplunkTrust
SplunkTrust

If you want to remove it at search time, then you can use sed to help

| rex mode=sed "s/agreementinquiry\S+/agreementinquiry/g"

It follows the format as Replace/<REGEX_TO_CAPTURE>/<REGEX_TO_REPLACE>/global

If you want to remove it at index time, you should use SEDCMD

0 Karma
Get Updates on the Splunk Community!

Exciting News: The AppDynamics Community Joins Splunk!

Hello Splunkers,   I’d like to introduce myself—I’m Ryan, the former AppDynamics Community Manager, and I’m ...

The All New Performance Insights for Splunk

Splunk gives you amazing tools to analyze system data and make business-critical decisions, react to issues, ...

Good Sourcetype Naming

When it comes to getting data in, one of the earliest decisions made is what to use as a sourcetype. Often, ...