<?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 Re: Extracting field value gets encoded. Why? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291159#M87962</link>
    <description>&lt;P&gt;Sorry, I've actually tried this with bracket &amp;lt;&amp;gt;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jan 2018 13:15:43 GMT</pubDate>
    <dc:creator>jkim34</dc:creator>
    <dc:date>2018-01-10T13:15:43Z</dc:date>
    <item>
      <title>Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291153#M87956</link>
      <description>&lt;P&gt;I have extracted value from the message log. So I have custom field with its value.&lt;BR /&gt;
In the log, it displays "* myName=J&amp;amp;K *"&lt;BR /&gt;
The extract field is myName, and it's value is now "J\u0026K". &lt;BR /&gt;
Even when I export this in PDF or CSV, encoded value gets displayed.&lt;/P&gt;

&lt;P&gt;Why is this occurring, and is there way to prevent automatic encoding?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 20:18:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291153#M87956</guid>
      <dc:creator>jkim34</dc:creator>
      <dc:date>2018-01-08T20:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291154#M87957</link>
      <description>&lt;P&gt;How are you extracting the field? Can you share configuration/regex for it?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 20:54:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291154#M87957</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-01-08T20:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291155#M87958</link>
      <description>&lt;P&gt;Hi, regex is something like below:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;(?&amp;lt;=myName=){1}(?P&amp;lt;myName&amp;gt;.+)(?=, nextKeyWord)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Where it looks for the preceding regex just before the value that I'm extracting for, and until it sees &lt;CODE&gt;, nextKeyWord&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 12:56:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291155#M87958</guid>
      <dc:creator>jkim34</dc:creator>
      <dc:date>2018-01-09T12:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291156#M87959</link>
      <description>&lt;P&gt;Hi  jkim34,&lt;/P&gt;

&lt;P&gt;Could you try this regex "myName=(?P[^,\s*(next*)]+)"&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:36:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291156#M87959</guid>
      <dc:creator>p_gurav</dc:creator>
      <dc:date>2020-09-29T17:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291157#M87960</link>
      <description>&lt;P&gt;Hi p_gurav,&lt;BR /&gt;
This don't seem to work. Also other field-value do contain white spaces, commas, etc.&lt;BR /&gt;
This issue so far seems to be an issue with character &amp;amp; &amp;lt; &amp;gt; &lt;BR /&gt;
At this point, I'm wondering if this is OOTB issue, or something that needs to be done inside configuration file..&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 12:50:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291157#M87960</guid>
      <dc:creator>jkim34</dc:creator>
      <dc:date>2018-01-10T12:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291158#M87961</link>
      <description>&lt;P&gt;My bad, Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;myName=(?P&amp;lt;myname&amp;gt;[^,\s*(next*)]+)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jan 2018 12:56:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291158#M87961</guid>
      <dc:creator>p_gurav</dc:creator>
      <dc:date>2018-01-10T12:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291159#M87962</link>
      <description>&lt;P&gt;Sorry, I've actually tried this with bracket &amp;lt;&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 13:15:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291159#M87962</guid>
      <dc:creator>jkim34</dc:creator>
      <dc:date>2018-01-10T13:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291160#M87963</link>
      <description>&lt;P&gt;Could you please tell me exact search command you are running and  one whole sample event?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 13:40:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291160#M87963</guid>
      <dc:creator>p_gurav</dc:creator>
      <dc:date>2018-01-10T13:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291161#M87964</link>
      <description>&lt;P&gt;Besides regex I stated above, I have following additional information:&lt;BR /&gt;
Log Message=&lt;CODE&gt;Form [myAddress=1 Main St., myName=J&amp;amp;K, myPhoneNumber=111-111-1111]&lt;/CODE&gt;&lt;BR /&gt;
Search Command=&lt;CODE&gt;search term | table myName&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 15:29:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291161#M87964</guid>
      <dc:creator>jkim34</dc:creator>
      <dc:date>2018-01-10T15:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291162#M87965</link>
      <description>&lt;P&gt;-- This issue so far seems to be an issue with character &amp;amp; &amp;lt; &amp;gt; &lt;BR /&gt;
Why does it feel like your data is being treated like XML data? ; - )&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 21:39:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291162#M87965</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-01-10T21:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting field value gets encoded. Why?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291163#M87966</link>
      <description>&lt;P&gt;You are right. Maybe I should revise my question a bit &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 18:24:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extracting-field-value-gets-encoded-Why/m-p/291163#M87966</guid>
      <dc:creator>jkim34</dc:creator>
      <dc:date>2018-01-11T18:24:09Z</dc:date>
    </item>
  </channel>
</rss>

