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!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.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 ...