<?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: rex word extraction? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67514#M16873</link>
    <description>&lt;P&gt;What if I have to capture somewhere in the middle of the line , not from the begining , how rex can be used here .Please suggest&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jun 2016 23:08:40 GMT</pubDate>
    <dc:creator>nasamajh09</dc:creator>
    <dc:date>2016-06-09T23:08:40Z</dc:date>
    <item>
      <title>rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67507#M16866</link>
      <description>&lt;P&gt;How can i write a regular expression  to extract string starting with S and ends with 'E'.&lt;/P&gt;

&lt;P&gt;I have used like this.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;rex "^S(?&amp;lt;LOC&amp;gt;[.]*)E$"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;, but not working ??&lt;/P&gt;

&lt;P&gt;can you pls help&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 19:38:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67507#M16866</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-12-18T19:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67508#M16867</link>
      <description>&lt;P&gt;Your carrot indicates that you want to capture from the beginning of the line. You want to search within the text so try:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| rex field=_raw "S(?&amp;lt;LOC&amp;gt;\w*)E"&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 19:46:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67508#M16867</guid>
      <dc:creator>alacercogitatus</dc:creator>
      <dc:date>2012-12-18T19:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67509#M16868</link>
      <description>&lt;P&gt;how can include both S and E as well in the word extraction ??&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 19:53:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67509#M16868</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-12-18T19:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67510#M16869</link>
      <description>&lt;P&gt;Just put them inside the matching group instead of outside.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 21:34:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67510#M16869</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-12-18T21:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67511#M16870</link>
      <description>&lt;P&gt;Like This: &lt;CODE&gt;| rex field=_raw "(?&amp;lt;LOC&amp;gt;S\w*E)"&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2012 21:36:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67511#M16870</guid>
      <dc:creator>alacercogitatus</dc:creator>
      <dc:date>2012-12-18T21:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67512#M16871</link>
      <description>&lt;P&gt;Thank you alacercogitatus&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2012 05:35:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67512#M16871</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-12-19T05:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67513#M16872</link>
      <description>&lt;P&gt;You are most welcome, please mark the answer as accepted if we have answered your question. Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2012 13:47:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67513#M16872</guid>
      <dc:creator>alacercogitatus</dc:creator>
      <dc:date>2012-12-19T13:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67514#M16873</link>
      <description>&lt;P&gt;What if I have to capture somewhere in the middle of the line , not from the begining , how rex can be used here .Please suggest&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 23:08:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67514#M16873</guid>
      <dc:creator>nasamajh09</dc:creator>
      <dc:date>2016-06-09T23:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: rex word extraction?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67515#M16874</link>
      <description>&lt;P&gt;| makeresults | eval aa="asssd sade bvc sfge" | eval bb=split(aa," ")  *&lt;EM&gt;use  this *&lt;/EM&gt; &lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/46i5C570537DF225961/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 05:50:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/rex-word-extraction/m-p/67515#M16874</guid>
      <dc:creator>arihant16cse</dc:creator>
      <dc:date>2019-02-07T05:50:04Z</dc:date>
    </item>
  </channel>
</rss>

