Splunk Search

Remove words from a String

sebafdez
Explorer

Hi guys!

I need to remove words from 2 char in a string, I have a field like:

comment="La pagina web es muy mala demasiado lenta"

and I want it to be like:

new_comment="pagina web muy mala demasiado lenta"

where words of 2 char doesn't exist anymore, any idea how to implement this in SPL?

regards

Tags (1)
0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

...  | rex field=comment mode=sed "s/ .. / /g s/^.. //g s/ ..$//g"

View solution in original post

0 Karma

somesoni2
Revered Legend

Give this a try (Run anywhere sample search, replace line 1 with your search)

| gentimes start=-1 | eval comment="La pagina web es muy mala demasiado lenta 1 12 123 44" | table comment 
| eval new_comment=replace(comment,"(^|\s)(\w\w)(\s|$)","\1")
0 Karma

woodcock
Esteemed Legend

Like this:

...  | rex field=comment mode=sed "s/ .. / /g s/^.. //g s/ ..$//g"
0 Karma

sebafdez
Explorer

thanks! works great!

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

ATTENTION: We’re Moving! (AGAIN!)

The Splunk Community Slack is undergoing a system migration to keep our workspace secure and ...

Deep Dive: Optimizing Telemetry Pipelines in Splunk Observability Cloud

In this session, we will peel back the layers of Splunk Observability Cloud’s cost-optimization features. ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...