<?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: Extract the words after Result=xxx in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698154#M237110</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/271866"&gt;@Satcom9&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pls check this(just a little tweak of your rex):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval Message="ACCU_DILAMZ9884 Failed, cueType=Splicer, SpliceEventID=0x00000BBC, SessionID=0x1A4D3100 SV event=454708529 spot=VAF00376_i pos=1 dur=0 Result=110 No Insertion Channel Found" |rex field=Message "Result=110(?&amp;lt;Test&amp;gt;\D+)" | table Message Test&lt;/LI-CODE&gt;&lt;P&gt;but the 110 should not hard-coded.. try this instead. thanks.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval Message="ACCU_DILAMZ9884 Failed, cueType=Splicer, SpliceEventID=0x00000BBC, SessionID=0x1A4D3100 SV event=454708529 spot=VAF00376_i pos=1 dur=0 Result=110 No Insertion Channel Found" |rex field=Message "Result=\d\d\d\s(?&amp;lt;Test&amp;gt;.*)" | table Message Test&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Sep 2024 00:53:10 GMT</pubDate>
    <dc:creator>inventsekar</dc:creator>
    <dc:date>2024-09-04T00:53:10Z</dc:date>
    <item>
      <title>Extract the words after Result=xxx</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698152#M237109</link>
      <description>&lt;P&gt;&lt;SPAN&gt;ACCU_DILAMZ9884 Failed, cueType=Splicer, SpliceEventID=0x00000BBC, SessionID=0x1A4D3100 SV event=454708529 spot=VAF00376_i pos=1 dur=0 Result=110 &lt;STRONG&gt;No Insertion Channel Found&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I want to extract the words that come after Result=XXX And not include the Result=xxx in the output.&lt;/P&gt;&lt;P&gt;|rex field=Message "(?&amp;lt;Test&amp;gt;\bResult.*\D+)"&amp;nbsp; &amp;nbsp;This produces this output&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Result=110 No Insertion Channel Found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So I want to exclude the Results=XXX&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 00:40:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698152#M237109</guid>
      <dc:creator>Satcom9</dc:creator>
      <dc:date>2024-09-04T00:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the words after Result=xxx</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698154#M237110</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/271866"&gt;@Satcom9&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pls check this(just a little tweak of your rex):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval Message="ACCU_DILAMZ9884 Failed, cueType=Splicer, SpliceEventID=0x00000BBC, SessionID=0x1A4D3100 SV event=454708529 spot=VAF00376_i pos=1 dur=0 Result=110 No Insertion Channel Found" |rex field=Message "Result=110(?&amp;lt;Test&amp;gt;\D+)" | table Message Test&lt;/LI-CODE&gt;&lt;P&gt;but the 110 should not hard-coded.. try this instead. thanks.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults | eval Message="ACCU_DILAMZ9884 Failed, cueType=Splicer, SpliceEventID=0x00000BBC, SessionID=0x1A4D3100 SV event=454708529 spot=VAF00376_i pos=1 dur=0 Result=110 No Insertion Channel Found" |rex field=Message "Result=\d\d\d\s(?&amp;lt;Test&amp;gt;.*)" | table Message Test&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 00:53:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698154#M237110</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2024-09-04T00:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the words after Result=xxx</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698156#M237111</link>
      <description>&lt;LI-CODE lang="markup"&gt;|rex field=Message "Result=\d\d\d\s(?&amp;lt;Test&amp;gt;.*)"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I replaced yours with mine and it works perfectly for what I was looking for, TY for the response.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Satcom9_0-1725411986818.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32528i6EFA9EE9EC9303E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Satcom9_0-1725411986818.png" alt="Satcom9_0-1725411986818.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 14:10:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Extract-the-words-after-Result-xxx/m-p/698156#M237111</guid>
      <dc:creator>Satcom9</dc:creator>
      <dc:date>2024-09-04T14:10:07Z</dc:date>
    </item>
  </channel>
</rss>

