Splunk Search

How to replace slash characters in field values with spaces instead (ex: change "A/B/C/D" to "A B C D")?

arnabsen1234
New Member

I have a field named httpUrl. This field has values with slashes like "/document/import/upload/reload/". I want to replace all the slashes with spaces. So the final thing should look like httpUrl="document import upload reload". How do I achieve this?

Tags (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Try ... | eval httpUrl=replace (httpUrl,"/"," ") | ...

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

MuS
Legend

Hi arnabsen1234,

try something like this:

| gentimes start=-1 | eval httpUrl="document/import/upload/reload" | rex field=httpUrl mode=sed "s/\// /g"

cheers, MuS

Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...