Splunk Search

Converting default table numeric format to Italy ( convert .(dot) values to ,(comma) values in table rows)

balachandar
Engager

Hi,

My current requirement is showing the table values in Italy numeric format instead of default American format. I mean instead of dot(.) as decimal separator I have to replace it with comma(,) Example: 14.260410 should be shown as 14,260410

I have modified the default locale in i18n.py from en-US to it_IT and restarted splunk but it didn't help.

Any help would be appreciated.

Thanks
Bala

0 Karma

mayurr98
Super Champion

Try this:

| rex field=_raw mode=sed "s/\./,/"

And let know what output you get!
This will work only if 14.260410 comes at the start of the event.
If this is not working properly then give me a sample full event.

0 Karma

Elsurion
Communicator

Hi Bala

I've done it with this way:

| eval usedkb=tostring(usedkb, "commas") 
| rex field=usedkb mode=sed "s/,/'/g"
| rex field=usedkb mode=sed "s/\./,/g"

First to eliminate the 1,000 comma to any other char and then replace the . to ,

0 Karma
Get Updates on the Splunk Community!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...