<?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: Field-Extraction in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136990#M37506</link>
    <description>&lt;P&gt;Thank you!!&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jul 2014 16:14:20 GMT</pubDate>
    <dc:creator>tmarlette</dc:creator>
    <dc:date>2014-07-10T16:14:20Z</dc:date>
    <item>
      <title>Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136982#M37498</link>
      <description>&lt;P&gt;I have a some data I am attempting to extract and then do lookups on. I am attempting to extract the FID number, which is effectivley - "FID":FID#:property = &amp;lt; value &amp;gt;&lt;/P&gt;

&lt;P&gt;Take a look at my entry:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;FID:1022:5=18749,109 FID:1025:5=18752,109 FID:1029:8=0:0:0 FID:1066:5=0,101 FID:1179:1=1 FID:2000:2=1 FID:3001:6=  FID:6335:6=US4592001014 FID:6360:6=2005973 FID:6605:1=1.01755e+013 FID:6630:1=8.26677e-005 FID:7012:6=459200101 FID:8107:1=0 FID:17476:2=0 FID:17483:2=-1 FID:20001:6=ADdomain FID:20003:6=domain1 FID:20008:6=user1 FID:20052:6=DEP01 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I attempted to use this REGEX extraction, but splunk doesn't recognize it: &lt;CODE&gt;FID:(?&amp;lt;FID&amp;gt;\d+):\d+&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I'm guess that either RegEx changed, or splunk changed somehow and I missed it, or i'm fat fingering something? &lt;/P&gt;

&lt;P&gt;Thank you! &lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 13:52:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136982#M37498</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-07-10T13:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136983#M37499</link>
      <description>&lt;P&gt;This is one log entry or 4? In both case, you need to extract all FID#?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:08:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136983#M37499</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-07-10T14:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136984#M37500</link>
      <description>&lt;P&gt;This is a snippet of one log entry, and I would need to extract ALL FID#'s from all log entries.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:12:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136984#M37500</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-07-10T14:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136985#M37501</link>
      <description>&lt;P&gt;So you want to get the values 1022, 1025, 1029, etc?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:15:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136985#M37501</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2014-07-10T14:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136986#M37502</link>
      <description>&lt;P&gt;Let's take the first part of the log entry:&lt;/P&gt;

&lt;P&gt;FID:1022:5=18749&lt;/P&gt;

&lt;P&gt;In this example, the number "1022" is what i'm looking to extract.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:22:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136986#M37502</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-07-10T14:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136987#M37503</link>
      <description>&lt;P&gt;This works for me (give a multivalued field will all FID#)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Your base search | rex max_match=0 "FID:(?&amp;lt;FID&amp;gt;\d+):\d+="
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:36:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136987#M37503</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-07-10T14:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136988#M37504</link>
      <description>&lt;P&gt;Thank you!!! This works very well!  is there a way to do this in props.conf or transforms?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 14:47:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136988#M37504</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-07-10T14:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136989#M37505</link>
      <description>&lt;P&gt;Yes sir. See this link.&lt;BR /&gt;
&lt;A href="http://answers.splunk.com/answers/11777/field-extraction-into-multivalue-field"&gt;http://answers.splunk.com/answers/11777/field-extraction-into-multivalue-field&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 15:10:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136989#M37505</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-07-10T15:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Field-Extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136990#M37506</link>
      <description>&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2014 16:14:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-Extraction/m-p/136990#M37506</guid>
      <dc:creator>tmarlette</dc:creator>
      <dc:date>2014-07-10T16:14:20Z</dc:date>
    </item>
  </channel>
</rss>

