<?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 Transform Comma Delimited Field (Extraction) Into Row in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140234#M12037</link>
    <description>&lt;P&gt;Is there a way to break a field extraction that is delimited into a new row in a table?&lt;/P&gt;

&lt;P&gt;Example Data:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2014-01-21 16:32:48,702 [MainThread] INFO  tData.Data.Refresh.BlotterRefreshHandler -     Blotter Refresh completed for MsgNum = 104, Order table, IDs: 238771427,228715752,238237071,236915854
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I'd like to have a table that read something similar to below. What is a good clean way to approach this (or dirty!)?&lt;/P&gt;

&lt;P&gt;_time               source  OrderID&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 238771427&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 228715752&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 238237071&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 236915854&lt;/P&gt;</description>
    <pubDate>Thu, 06 Feb 2014 15:40:12 GMT</pubDate>
    <dc:creator>andrewkenth</dc:creator>
    <dc:date>2014-02-06T15:40:12Z</dc:date>
    <item>
      <title>Transform Comma Delimited Field (Extraction) Into Row</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140234#M12037</link>
      <description>&lt;P&gt;Is there a way to break a field extraction that is delimited into a new row in a table?&lt;/P&gt;

&lt;P&gt;Example Data:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2014-01-21 16:32:48,702 [MainThread] INFO  tData.Data.Refresh.BlotterRefreshHandler -     Blotter Refresh completed for MsgNum = 104, Order table, IDs: 238771427,228715752,238237071,236915854
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I'd like to have a table that read something similar to below. What is a good clean way to approach this (or dirty!)?&lt;/P&gt;

&lt;P&gt;_time               source  OrderID&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 238771427&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 228715752&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 238237071&lt;BR /&gt;
2014-01-21 16:32:48 foo.csv 236915854&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2014 15:40:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140234#M12037</guid>
      <dc:creator>andrewkenth</dc:creator>
      <dc:date>2014-02-06T15:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Transform Comma Delimited Field (Extraction) Into Row</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140235#M12038</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;
You can extract the IDs from the event,assuming you are not breaking them into rows before indexing. After you do get the ids on a single field, you just need to split it by ","&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...|eval OrderIDs=split(ID,",")|table _time,source,OrderIDs|mvexpand OrderID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2014 15:47:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140235#M12038</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2014-02-06T15:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Transform Comma Delimited Field (Extraction) Into Row</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140236#M12039</link>
      <description>&lt;P&gt;Perfect! thanks. mvexpand is exactly what I was looking for &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2014 15:57:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Transform-Comma-Delimited-Field-Extraction-Into-Row/m-p/140236#M12039</guid>
      <dc:creator>andrewkenth</dc:creator>
      <dc:date>2014-02-06T15:57:23Z</dc:date>
    </item>
  </channel>
</rss>

