<?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: mvexpand multiple multi-value fields? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/614382#M213501</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt;&lt;/P&gt;&lt;P&gt;This method works perfectly if there is only one row. Would it be possible to make it work for multiple rows?&lt;/P&gt;&lt;PRE&gt;| makeresults 
| eval x="another_single_value_field" 
| eval f1=split("a1,a2,a3",",") 
| eval f2=split("b1,b2,b3",",") 
| eval f3=split("c1,c2,c3",",") 
| eval f4=split("d1,d2,d3",",")&lt;BR /&gt;|&amp;nbsp;append&lt;BR /&gt;[ | makeresults 
| eval x="another_single_value_field" 
| eval f1=split("x1,y2,z3",",") 
| eval f2=split("x1,y2,z3",",") 
| eval f3=split("x1,y2,z3",",") 
| eval f4=split("x1,y2,z3",",") ]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Sep 2022 20:07:32 GMT</pubDate>
    <dc:creator>shreyp</dc:creator>
    <dc:date>2022-09-23T20:07:32Z</dc:date>
    <item>
      <title>mvexpand multiple multi-value fields: How do I turn my three multi-value fields into tuples?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21970#M3685</link>
      <description>&lt;P&gt;I have a query that extracts useful info from a storage system report.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;rex "quota list --verbose (?&amp;lt;fs&amp;gt;[A-Z0-9_]+) " | rex max_match=1000 "ViVol: (?&amp;lt;vivol&amp;gt;(?!user)[A-Za-z0-9]+)\nUsage\s+:\s+(?&amp;lt;usage&amp;gt;[0-9. A-Za-z]+)\n\s*Limit\s+:\s+(?&amp;lt;limit&amp;gt;[0-9A-Z. ]+)" | table fs, vivol, usage, limit
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;There is a single line at the start of the report with the filesystem which I extract as the "fs" field. Then there are several volume descriptions containing separate lines for the volume, usage and limit.&lt;/P&gt;
&lt;P&gt;This query produces a single-value field for "fs" then three multi-value fields "vivol", "usage" and "limit". e.g.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;   fs                       vivol                 usage                    limit
   FIRST_FS                 VOL_ABC               100                      300
                            VOL_XYZ               320                      800
                            VOL_123               50                       150
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;When I export this to Excel (using CSV) the multi-value fields are all within a single cell. I want them on separate rows. If I use mvexpand I get the unexpected behaviour that it will properly expand one field but leave the others unexpanded. If I expand all three fields they lose correlation so I get rows that are mixed-up.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;   FIRST_FS                 VOL_123              320                       300
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;How do I turn my three multi-value fields into tuples? I want to keep them together so the first row in "vivol" matches the first rows in "usage" and "limit". Bear in mind there are many "fs" events (about 100 of them).&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 03:36:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21970#M3685</guid>
      <dc:creator>nathanh42</dc:creator>
      <dc:date>2022-09-24T03:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21971#M3686</link>
      <description>&lt;P&gt;Here's an example of the storage system report I'm starting with, if that helps.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Content-Transfer-Encoding: 7bit
Scheduled job console-context --evs 1 quota list --verbose FIRST_FS produced the following output:
Type            : Explicit
Target          : ViVol: VOL_ABC
Usage           : 100 GB
  Limit         : 500 GB (Hard)
Last modified   : 2010-12-19 04:56:50.834383000+00:00
Type            : Explicit
Target          : ViVol: VOL_123
Usage           : 609 GB
  Limit         : 3 TB (Hard)
Last modified   : 2010-12-21 04:04:23.757073000+00:00
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Jun 2011 05:47:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21971#M3686</guid>
      <dc:creator>nathanh42</dc:creator>
      <dc:date>2011-06-03T05:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21972#M3687</link>
      <description>&lt;P&gt;I just had the same issue.&lt;/P&gt;

&lt;P&gt;Create a single field with all the eventual fields you want, so you have a single MV, then use mvexpand to create the multiple entries, then do another parse on the (now single-) value to extract the three fields.  &lt;/P&gt;</description>
      <pubDate>Sat, 17 Mar 2012 01:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21972#M3687</guid>
      <dc:creator>ahall_splunk</dc:creator>
      <dc:date>2012-03-17T01:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21973#M3688</link>
      <description>&lt;P&gt;I ran into the same issue with two multi-valued fields, and arrived at a different solution  - make a copy of the field to preserve the order for an mvfind, then use mvexpand, look up the value in the added field, lookup each field that was NOT expanded, then drop the added field.  It would look something like:&lt;/P&gt;

&lt;P&gt;...| eval vivolIndex=vivol | mvexpand vivol | eval idx=mvfind(vivolIndex,vivol) | eval usage=mvindex(usage,idx) | eval limit=mvindex(limit,idx) | fields - vivolIndex ...&lt;/P&gt;

&lt;P&gt;This solution worked better for me as I was using a stats list(x) list(y) and needed to keep the values correlated.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2014 01:39:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21973#M3688</guid>
      <dc:creator>jlord</dc:creator>
      <dc:date>2014-06-27T01:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21974#M3689</link>
      <description>&lt;P&gt;Just ran into a similar issue, glad I found your solution. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2015 16:45:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21974#M3689</guid>
      <dc:creator>djfang</dc:creator>
      <dc:date>2015-05-07T16:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21975#M3690</link>
      <description>&lt;P&gt;Use mvzip, makemv and then reset the fields based on index.&lt;/P&gt;

&lt;P&gt;First, mvzip the multi-values into a new field:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval reading=mvzip(vivol, usage)    // create multi-value field for reading
| eval reading=mvzip(reading, limit)  // add the third field
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;At this point you'll have a multi-value field called reading. Here's an example of a field value (a list of &lt;EM&gt;four&lt;/EM&gt; items):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;"VOL_ABC,100,300",  "VOL_XYZ,320,800", "VOL_123, 50,150", "VOL_FOO, 80,120"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Expand the field and restore the values:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| mvexpand reading                    // separate multi-value into into separate events
| makemv reading delim=","            // convert the reading into a multi-value
| eval vivol=mvindex(reading, 0)      // set vivol to the first value of reading
| eval usage=mvindex(reading, 1)      // set usage to the second value of reading
| eval limit=mvindex(reading, -1)     // set limit to the last value of reading
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Jun 2015 18:37:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21975#M3690</guid>
      <dc:creator>mrobichaud_splu</dc:creator>
      <dc:date>2015-06-04T18:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21976#M3691</link>
      <description>&lt;P&gt;Very helpful, thanks.  I ended up with a completed search that did exactly what I wanted using the above stuff. &lt;/P&gt;

&lt;P&gt;source="/Znfs200g/Mainframe/splunk/volSpaceReport.txt" | rex max_match=0 "(?:PRIVATE\s+)(?\d+)\s+(?\d+)" | eval my_zip=mvzip(vol,vol_pct) | mvexpand my_zip | makemv my_zip delim="," | eval vol=mvindex(my_zip,0) | eval vol_pct=mvindex(my_zip,1) | eventstats sum(vol) as vol_sum | eval weighted_vol_pct=(vol_pct*vol/vol_sum) | stats sum(weighted_vol_pct) as Average_HardDisk_Utilization&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 07:30:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21976#M3691</guid>
      <dc:creator>ksextonmacb</dc:creator>
      <dc:date>2020-09-29T07:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21977#M3692</link>
      <description>&lt;P&gt;this worked for some JSON data I had where I needed to preserve relationships among elements of an array&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 19:22:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21977#M3692</guid>
      <dc:creator>joshualarkins</dc:creator>
      <dc:date>2016-02-18T19:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21978#M3693</link>
      <description>&lt;P&gt;Separate the data into lines (events):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex max_match=0 "(?&amp;lt;line&amp;gt;[^\)]+\)\n\N+)" | mvexpand line | table line
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;[&lt;A href="https://regex101.com/r/qN6tG2/1"&gt;https://regex101.com/r/qN6tG2/1&lt;/A&gt;]&lt;BR /&gt;
Next, do your extractions:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex field=line "quota list --verbose (?&amp;lt;fs&amp;gt;[A-Z0-9_]+) " | rex field=line max_match=1000 "ViVol: (?&amp;lt;vivol&amp;gt;(?!user)[A-Za-z0-9]+)\nUsage\s+:\s+(?&amp;lt;usage&amp;gt;[0-9. A-Za-z]+)\n\s*Limit\s+:\s+(?&amp;lt;limit&amp;gt;[0-9A-Z. ]+)" | table fs, vivol, usage, limit
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Use the SPL command &lt;STRONG&gt;filldown&lt;/STRONG&gt;:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| filldown fs
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to get:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    fs                       vivol                 usage                    limit
FIRST_FS                 VOL_ABC               100                      300
FIRST_FS                 VOL_XYZ               320                      800
FIRST_FS                 VOL_123               50                       150
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;then take it from there.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 23:34:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21978#M3693</guid>
      <dc:creator>landen99</dc:creator>
      <dc:date>2016-09-16T23:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21979#M3694</link>
      <description>&lt;P&gt;I downvoted this post because .&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 19:46:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21979#M3694</guid>
      <dc:creator>boozsplunk</dc:creator>
      <dc:date>2017-02-24T19:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21980#M3695</link>
      <description>&lt;P&gt;This is so great. I am writing this comment (and upvoting) AFTER searching for this answer and using it for the third time. Quite ungrateful. &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2017 06:56:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21980#M3695</guid>
      <dc:creator>sk314</dc:creator>
      <dc:date>2017-09-07T06:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21981#M3696</link>
      <description>&lt;P&gt;Thanks @sk314. To be fair, this question was left unanswered for four years and 35 hours. Some improvements have been made to the docs since this answer, but this example is still better, IMO.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2017 15:16:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21981#M3696</guid>
      <dc:creator>mrobichaud_splu</dc:creator>
      <dc:date>2017-09-07T15:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21982#M3697</link>
      <description>&lt;P&gt;Assuming that all the mv fields MUST have the same number of items...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval myFan=mvrange(0,mvcount(vivol))
| mvexpand myFan
| eval vivol=mvindex(vivol,myFan)
| eval usage=mvindex(usage,myFan)
| eval limit=mvindex(limit,myFan)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Oct 2017 18:52:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21982#M3697</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-10-06T18:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21983#M3698</link>
      <description>&lt;P&gt;Seriously this is a great help&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 23:10:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21983#M3698</guid>
      <dc:creator>vikfnu</dc:creator>
      <dc:date>2018-07-31T23:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21984#M3699</link>
      <description>&lt;P&gt;Hi DalJeanis,&lt;BR /&gt;
your solution is ingenious.&lt;/P&gt;

&lt;P&gt;Thanks so much!&lt;/P&gt;

&lt;P&gt;Antonio&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 13:08:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21984#M3699</guid>
      <dc:creator>aagro</dc:creator>
      <dc:date>2019-01-23T13:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21985#M3700</link>
      <description>&lt;P&gt;Thanks , It helped me so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; .&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 13:02:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21985#M3700</guid>
      <dc:creator>anjalisaini</dc:creator>
      <dc:date>2019-02-06T13:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21986#M3701</link>
      <description>&lt;P&gt;Here is another solution to this problem:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/724138/"&gt;https://answers.splunk.com/answers/724138/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 23:52:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21986#M3701</guid>
      <dc:creator>dmanojbaba</dc:creator>
      <dc:date>2019-02-08T23:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21987#M3702</link>
      <description>&lt;P&gt;Here is another answer to this question:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/724138/"&gt;https://answers.splunk.com/answers/724138/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Please upvote, if it helps.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 23:53:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21987#M3702</guid>
      <dc:creator>dmanojbaba</dc:creator>
      <dc:date>2019-02-08T23:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21988#M3703</link>
      <description>&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2019 15:30:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21988#M3703</guid>
      <dc:creator>D2SI</dc:creator>
      <dc:date>2019-05-02T15:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: mvexpand multiple multi-value fields?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21989#M3704</link>
      <description>&lt;P&gt;Updated regex a bit to select the values as per the example:&lt;/P&gt;

&lt;P&gt;| rex field=line "quota list --verbose (?[A-Z0-9_]+) " &lt;BR /&gt;
| rex field=line max_match=1000 &lt;STRONG&gt;"ViVol: (?(?!user)[A-Za-z0-9_]+)\nUsage\s+:\s+(?[0-9.]+)[A-Za-z\s\n]+Limit\s+:\s+(?[0-9]+)[A-Za-z\s+()]+"&lt;/STRONG&gt;&lt;BR /&gt;
| table fs, vivol, usage, limit&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:43:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/mvexpand-multiple-multi-value-fields-How-do-I-turn-my-three/m-p/21989#M3704</guid>
      <dc:creator>wlombard</dc:creator>
      <dc:date>2020-09-30T03:43:20Z</dc:date>
    </item>
  </channel>
</rss>

