<?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: i want to cut all the words after Modified at first present. i used the command its only cutting Modified value others are still presents. | rex field=ER mode=sed &amp;quot;s/Modified\S+//g &amp;quot; in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352089#M104196</link>
    <description>&lt;P&gt;Can you provide a sample, what the event is and what you want to extract out of that event ?&lt;/P&gt;</description>
    <pubDate>Tue, 13 Jun 2017 11:12:13 GMT</pubDate>
    <dc:creator>abhinav_maxonic</dc:creator>
    <dc:date>2017-06-13T11:12:13Z</dc:date>
    <item>
      <title>i want to cut all the words after Modified at first present. i used the command its only cutting Modified value others are still presents. | rex field=ER mode=sed "s/Modified\S+//g "</title>
      <link>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352088#M104195</link>
      <description>&lt;P&gt;Extesnded value Associaated With destiny: "LineIces" - "Actio1n Cod2e"; Modified: Extends Aribute - "Action"; Old Value = "Add"; New Value = "-" Modified&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:02:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352088#M104195</guid>
      <dc:creator>DataOrg</dc:creator>
      <dc:date>2017-06-13T11:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: i want to cut all the words after Modified at first present. i used the command its only cutting Modified value others are still presents. | rex field=ER mode=sed "s/Modified\S+//g "</title>
      <link>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352089#M104196</link>
      <description>&lt;P&gt;Can you provide a sample, what the event is and what you want to extract out of that event ?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:12:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352089#M104196</guid>
      <dc:creator>abhinav_maxonic</dc:creator>
      <dc:date>2017-06-13T11:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: i want to cut all the words after Modified at first present. i used the command its only cutting Modified value others are still presents. | rex field=ER mode=sed "s/Modified\S+//g "</title>
      <link>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352090#M104197</link>
      <description>&lt;P&gt;i want to cut\remove all the character when "Modified" is Present.&lt;/P&gt;

&lt;P&gt;EX : Extesnded value Associaated With destiny: "LineIces" - "Actio1n Cod2e"; &lt;STRONG&gt;Modified&lt;/STRONG&gt;: Extends Aribute - "Action"; Old Value = "Add"; New Value = "-" Modified&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:19:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352090#M104197</guid>
      <dc:creator>DataOrg</dc:creator>
      <dc:date>2017-06-13T11:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: i want to cut all the words after Modified at first present. i used the command its only cutting Modified value others are still presents. | rex field=ER mode=sed "s/Modified\S+//g "</title>
      <link>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352091#M104198</link>
      <description>&lt;P&gt;So if there is field A . When word "Modified" in NOT present in the event, value of A="Add" and when word "Modified" is present is the event, value of A="-" . Is this what you want ?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:35:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352091#M104198</guid>
      <dc:creator>abhinav_maxonic</dc:creator>
      <dc:date>2017-06-13T11:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: i want to cut all the words after Modified at first present. i used the command its only cutting Modified value others are still presents. | rex field=ER mode=sed "s/Modified\S+//g "</title>
      <link>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352092#M104199</link>
      <description>&lt;P&gt;Like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex field=ER mode=sed "s/Modified\S+.*$//g "
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But maybe the &lt;CODE&gt;\S&lt;/CODE&gt; should be &lt;CODE&gt;\s&lt;/CODE&gt; so try this if that doesn't work:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex field=ER mode=sed "s/Modified\s+.*$//g "
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or maybe actually this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rex field=ER mode=sed "s/Modified:\s+.*$//g "
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Jun 2017 12:15:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/i-want-to-cut-all-the-words-after-Modified-at-first-present-i/m-p/352092#M104199</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-06-13T12:15:19Z</dc:date>
    </item>
  </channel>
</rss>

