Splunk Search

What regex command to use to to remove the special character after a number?

DataOrg
Builder

I want to remove the special character after a number, please help.

data:

7.62\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00

I want:

7.62. the number is not constant it will keep changing so I need to remove only the special character.
0 Karma

richgalloway
SplunkTrust
SplunkTrust

@493669 has a good answer, but types faster than me. It will extract the number into a new field.

Here's another option that modifies the original field (not on disk, of course).

... | rex mode=sed field=data "s/\\\x00//g" | ...
---
If this reply helps you, Karma would be appreciated.
0 Karma

493669
Super Champion

try this:

   ... |rex field=data "^(?<data>\d+\.?\d+)"

or

   ... |rex field=data "^(?<a>[^\\]+)"
0 Karma

sudosplunk
Motivator

Hi there,

Is this how the full event looks like? Can you please provide some sample events to give you the regex as accurate as possible.
Also, do you want to remove special characters before indexing or after (search-time)?

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...