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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...