<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Converting default table numeric format to Italy ( convert .(dot) values to ,(comma) values in table rows) in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348924#M164271</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;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&lt;/P&gt;

&lt;P&gt;I have modified the default locale in i18n.py from en-US to it_IT and restarted splunk but it didn't help.&lt;/P&gt;

&lt;P&gt;Any help would be appreciated.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Bala&lt;/P&gt;</description>
    <pubDate>Tue, 19 Dec 2017 07:22:07 GMT</pubDate>
    <dc:creator>balachandar</dc:creator>
    <dc:date>2017-12-19T07:22:07Z</dc:date>
    <item>
      <title>Converting default table numeric format to Italy ( convert .(dot) values to ,(comma) values in table rows)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348924#M164271</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;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&lt;/P&gt;

&lt;P&gt;I have modified the default locale in i18n.py from en-US to it_IT and restarted splunk but it didn't help.&lt;/P&gt;

&lt;P&gt;Any help would be appreciated.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Bala&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 07:22:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348924#M164271</guid>
      <dc:creator>balachandar</dc:creator>
      <dc:date>2017-12-19T07:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Converting default table numeric format to Italy ( convert .(dot) values to ,(comma) values in table rows)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348925#M164272</link>
      <description>&lt;P&gt;Hi Bala&lt;/P&gt;

&lt;P&gt;I've done it with this way:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval usedkb=tostring(usedkb, "commas") 
| rex field=usedkb mode=sed "s/,/'/g"
| rex field=usedkb mode=sed "s/\./,/g"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;First to eliminate the 1,000 comma to any other char and then replace the . to ,&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 09:03:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348925#M164272</guid>
      <dc:creator>Elsurion</dc:creator>
      <dc:date>2017-12-19T09:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Converting default table numeric format to Italy ( convert .(dot) values to ,(comma) values in table rows)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348926#M164273</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex field=_raw mode=sed "s/\./,/"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And let know what output you get!&lt;BR /&gt;
This will work only if &lt;CODE&gt;14.260410&lt;/CODE&gt; comes at the start of the event.&lt;BR /&gt;
If this is not working properly then give me a sample full event.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 09:37:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Converting-default-table-numeric-format-to-Italy-convert-dot/m-p/348926#M164273</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2017-12-19T09:37:04Z</dc:date>
    </item>
  </channel>
</rss>

