Splunk Search

How to do 2 parameters rex mode=sed ?

pgbr7
Explorer

Hello Guys,

It's possible 2 parameters rex mode=sed in sequence ?
I can change ab for 01 and ac for 02

I try this, but not work:
| rex mode=sed field=_raw "s/ab/01/g;s/ac/02/g"
Error:
Error in 'rex' command: Failed to initialize sed. Invalid option string: g;s/ac/02/g

or i need to use 2 rex mode=sed field=_raw , 1 for change ab for 01and other for change ac for 02 ?

0 Karma
1 Solution

gokadroid
Motivator

Use the rex mode sed command split over two lines rather than writing the code in one single line. Also do not use the ; in between. So basically whatever you were trying to achieve with semicolon in between, achieve it with in same command but split over two lines:

yourBaseSearch
| rex mode=sed field=_raw "s/ab/01/g
s/ac/02/g"
| stats count by yourField

NOTE: I have removed the semicolon and tricked command to be in multiline

View solution in original post

gokadroid
Motivator

Use the rex mode sed command split over two lines rather than writing the code in one single line. Also do not use the ; in between. So basically whatever you were trying to achieve with semicolon in between, achieve it with in same command but split over two lines:

yourBaseSearch
| rex mode=sed field=_raw "s/ab/01/g
s/ac/02/g"
| stats count by yourField

NOTE: I have removed the semicolon and tricked command to be in multiline

pgbr7
Explorer

Thanks It's working !

redflexigork
Explorer

Also noticed it works with the space:

| rex mode=sed field=_raw "s/ab/01/g s/ac/02/g"

richgalloway
SplunkTrust
SplunkTrust

Use two rex commands.

---
If this reply helps you, Karma would be appreciated.
0 Karma

pgbr7
Explorer

This is not good, because if I need to change 3 or more its very dificult.

Thanks

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...