<?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: How to get 3rd word using regex? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429189#M122771</link>
    <description>&lt;P&gt;@saranyaa21, have you tried the below spath command as suggested. Read about spath command from the documentation link provided above.As mentioned earlier String should be under double quotes for the JSON to be valid. Also while you have posted &lt;CODE&gt;Details&lt;/CODE&gt; section, I think even Details is not the Root Node of JSON data.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; sourcetype=server_log "Class_Name" 
 | spath
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Ideally spath is the command supposed to traverse through JSON and XML data. If your _raw data has JSON within some additional non-json data, you would need to extract complete JSON data first. You would need to give us this pattern in case you need assistance with this scenario.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| makeresults&lt;/CODE&gt; is dummy command for us to cook up data as per the question and demo the functionality as a run anywhere search (obviously because we do not have access to actual data in your environment). In your case please try out the following SPL and confirm:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  sourcetype=server_log "Class_Name" 
 | rex "(?&amp;lt;=\"City\"\:)(?&amp;lt;Cities&amp;gt;[^\}]+)"
 | rex field=Cities "(?&amp;lt;city&amp;gt;[^\"]+)\"\:\s(?&amp;lt;count&amp;gt;[^\,\}]+)(,|\})" max_match=0
 | eval city2=mvindex(city,1),count2=mvindex(count,1)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 09 Jul 2018 07:02:14 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2018-07-09T07:02:14Z</dc:date>
    <item>
      <title>How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429178#M122760</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;

&lt;P&gt;City:{city1: 4, city2: 3, city3: 2, city4: 5}&lt;/P&gt;

&lt;P&gt;I used this regex to get the 3rd word from the above line: (?&amp;lt;"City_count"&amp;gt;(?&amp;lt;=City:)(?:\S+\s+){2}(\S+))&lt;BR /&gt;
But I get 1st , 2nd and 3rd word as a result. &lt;/P&gt;

&lt;P&gt;Please help with a regex to get the 3rd  word : city2: 3 &lt;/P&gt;</description>
      <pubDate>Sun, 08 Jul 2018 13:33:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429178#M122760</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-08T13:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429179#M122761</link>
      <description>&lt;P&gt;Given the limited nature of your example data, it's hard to come up with a definitive regex that will do the trick on your data, but here is a potential regex that you can use:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;^[^:]+:\{[^:]+:[^:,]+,\s(?P&amp;lt;City_count&amp;gt;[^:]+:[^,]+)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This starts at the beginning of the line ( &lt;CODE&gt;^&lt;/CODE&gt;), accepts the first test up to the colon ( &lt;CODE&gt;[^:]+&lt;/CODE&gt;), gets the colon and curly brace ( &lt;CODE&gt;:\{&lt;/CODE&gt;), gets the next data pair, comma, and space ( &lt;CODE&gt;[^:]+:[^:,]+,\s&lt;/CODE&gt;) and them finally gets your desired data in the field &lt;CODE&gt;City_count&lt;/CODE&gt; ( &lt;CODE&gt;(?P&amp;lt;City_count&amp;gt;[^:]+:[^,]+)&lt;/CODE&gt;). As I said, this may not work on all your data, but it does work in this case and in cases that are similar.&lt;/P&gt;

&lt;P&gt;Your version had a couple of problems, The double quotes around the field name were a problem for the syntax, because quotes are not allowed in field names. Then after skipping the &lt;CODE&gt;City:&lt;/CODE&gt; it just takes the first two sets of non-space sets followed by spaces (that would be the &lt;CODE&gt;{city1: 4,&lt;/CODE&gt; data) and combines it with the next set of non-spaces (that would be the &lt;CODE&gt;city2:&lt;/CODE&gt;) and puts them together in the field, so that you end up with &lt;CODE&gt;{city1: 4, city2:&lt;/CODE&gt; in the field. Your named capture grouping is all off, and not complete.&lt;/P&gt;

&lt;P&gt;When you say that the third "word" that you want is &lt;CODE&gt;city2: 3&lt;/CODE&gt;, that is exactly what my regex will give you with the data set you have provided. If you just want &lt;CODE&gt;3&lt;/CODE&gt; as the field value, then I would use the following regex:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;^[^:]+:\{[^:]+:[^:,]+,\s[^:]+:\s(?P&amp;lt;City_count&amp;gt;[^,]+)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;There are simpler ways as well. For example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;^([^:]+:){3}\s(?P&amp;lt;City_count&amp;gt;[^,]+)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This only looks for the third colon, followed by a space, then takes the number(s) to the comma. Example data is always good to post so that it can be matched properly to a result, particularly in the case of regular expressions.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jul 2018 15:00:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429179#M122761</guid>
      <dc:creator>cpetterborg</dc:creator>
      <dc:date>2018-07-08T15:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429180#M122762</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;City:{(?:[^:]+:\s+\d+,\s*){2}(?&amp;lt;Third&amp;gt;[^:]+:\s+\d+)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 08 Jul 2018 17:41:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429180#M122762</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2018-07-08T17:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429181#M122763</link>
      <description>&lt;P&gt;Maybe the following would work for you -&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;City:{(?:\S+\s+){2}(\S+\s+\d)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&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/5342iBB7C71929772982B/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>Mon, 09 Jul 2018 01:30:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429181#M122763</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-07-09T01:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429182#M122764</link>
      <description>&lt;P&gt;Hello ddrillic, &lt;/P&gt;

&lt;P&gt;Your answer works perfectly in the regular expression 101, and gives me the output city2: 3. &lt;BR /&gt;
But when I use this in my splunk with real time logs, I'm getting emply result. &lt;/P&gt;

&lt;P&gt;Below is the compelte splunk query&lt;/P&gt;

&lt;P&gt;sourcetype=server_log "Class_Name" | rex field=_raw "(?&amp;lt;"City_count"&amp;gt;City:{(?:\S+\s+){2}(\S+\s+\d))" | stats count by City_count&lt;/P&gt;

&lt;P&gt;Can you please help in figuring out the flaw here &lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:21:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429182#M122764</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2020-09-29T20:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429183#M122765</link>
      <description>&lt;P&gt;Hello Mr. Woodcock, &lt;/P&gt;

&lt;P&gt;Thank you for your reply. &lt;BR /&gt;
I did not get any matching result with the regex. I got an empty value in the splunk. Can you please help with this. &lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 05:17:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429183#M122765</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-09T05:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429184#M122766</link>
      <description>&lt;P&gt;Hello Mr.  cpetterborg, &lt;/P&gt;

&lt;P&gt;Appreciate your complete explanation. Given you 2 reward points for explaining. &lt;/P&gt;

&lt;P&gt;This is how my entire data set will look like. &lt;BR /&gt;
Details: {Employee:{employee1:100,employee2:101,employee3:103},Company:{company1:001,company2:002,company3:003},City:{city1:4,city2:3,city3:5}}&lt;/P&gt;

&lt;P&gt;For the above data set, I would like to fetch only value 3 from the city2:3 . &lt;/P&gt;

&lt;P&gt;Below is the splunk query which I used with your above regex : ^([^:]+:){3}\s(?P[^,]+)&lt;/P&gt;

&lt;P&gt;sourcetype=server_log  "Class Name" | rex field=_raw "((?&amp;lt;"City_count"&amp;gt;(City:^([^:]+:){3}\s(?P[^,]+)))" | stats count by City_count&lt;/P&gt;

&lt;P&gt;But I didnot get any output. Can you please help me with it. &lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:21:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429184#M122766</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2020-09-29T20:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429185#M122767</link>
      <description>&lt;P&gt;Hello Mr. ddrillic, &lt;/P&gt;

&lt;P&gt;Details: {Employee:{employee1:100,employee2:101,employee3:103},Company:{company1:001,company2:002,company3:003},City:{city1:4,city2:3,city3:5}} is my complete data set. &lt;/P&gt;

&lt;P&gt;I wish to extract only 3 from city2:3 &lt;BR /&gt;
Please help me with it &lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 05:40:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429185#M122767</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-09T05:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429186#M122768</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/123570"&gt;@saranyaa21&lt;/a&gt;, based on the sample data provided, seems like you are traversing  JSON data. Ideally for the &lt;CODE&gt;sourcetype=server_log&lt;/CODE&gt;, if you are only interested in JSON data, you should try either INDEXED_EXTRACTIONS=JSON or else &lt;CODE&gt;KV_MODE=json&lt;/CODE&gt; in your &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Admin/Propsconf" target="_blank"&gt;props.conf&lt;/A&gt;. &lt;CODE&gt;But not both&lt;/CODE&gt;. In order to test the same at Search time you can try the following run anywhere search with &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Spath" target="_blank"&gt;spath&lt;/A&gt; to reveal all the nodes in JSON. If you refer to documentation you can apply the same to specific node as well.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval _raw="{\"City\":{\"city1\": 4, \"city2\": 3, \"city3\": 2, \"city4\": 5}}"
| spath
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or in your case &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=server_log "Class_Name" 
| spath
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The reason why the regular expression provided by experts provided here might not be working for you is possibly because strings in properly formatted JSON data is always placed inside double quotes which is missing in the sample data provided.&lt;BR /&gt;
Syntactically, a correct JSON as per your sample data should look something like the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{"City":{"city1": 4, "city2": 3, "city3": 2, "city4": 5}}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Following is a regular expression based approach. However, for the same to work with your data hierarchy of JSON data that you currently have would be required. Or else there will be two level of rex required. The following blindly take Key Value Pairs in JSON data:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval _raw="{\"City\":{\"city1\": 4, \"city2\": 3, \"city3\": 2, \"city4\": 5}}"
| rex "(?&amp;lt;city&amp;gt;[^\"]+)\"\:\s(?&amp;lt;count&amp;gt;[^\,\}]+)(,|\})" max_match=0
| eval city2=mvindex(city,1),count2=mvindex(count,1)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or the following with two rex, first to get all Cities and second to pull specific one needed:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval _raw="{\"City\":{\"city1\": 4, \"city2\": 3, \"city3\": 2, \"city4\": 5}}"
| rex "(?&amp;lt;=\"City\"\:)(?&amp;lt;Cities&amp;gt;[^\}]+)"
| rex field=Cities "(?&amp;lt;city&amp;gt;[^\"]+)\"\:\s(?&amp;lt;count&amp;gt;[^\,\}]+)(,|\})" max_match=0
| eval city2=mvindex(city,1),count2=mvindex(count,1)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:18:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429186#M122768</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-09-29T20:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429187#M122769</link>
      <description>&lt;P&gt;Hello Mr. Niketnilay, &lt;/P&gt;

&lt;P&gt;Yes. My complete data looks like this : &lt;/P&gt;

&lt;P&gt;Details: {Employee:{employee1:100,employee2:101,employee3:103},Company:{company1:001,company2:002,company3:003},City:{city1:4,city2:3,city3:5}}&lt;/P&gt;

&lt;P&gt;From this I would like to pick only value 3 from city2:3&lt;BR /&gt;
Can you please help me with a splunk query &lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 06:25:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429187#M122769</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-09T06:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429188#M122770</link>
      <description>&lt;P&gt;In your above comment , you are inputting the raw value of city1, city2 and city3 as &lt;BR /&gt;
| eval _raw="{\"City\":{\"city1\": 4, \"city2\": 3, \"city3\": 2, \"city4\": 5}}"&lt;/P&gt;

&lt;P&gt;But my entire data will be a dynamic, &lt;BR /&gt;
Details: {Employee:{employee1:100,employee2:101,employee3:103},Company:{company1:001,company2:002,company3:003},City:{city1:4,city2:3,city3:5}} &lt;BR /&gt;
These values keep on changing. &lt;BR /&gt;
In such case every time I wish to extract only the value of city2. &lt;/P&gt;

&lt;P&gt;Can you please with this &lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 06:50:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429188#M122770</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-09T06:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429189#M122771</link>
      <description>&lt;P&gt;@saranyaa21, have you tried the below spath command as suggested. Read about spath command from the documentation link provided above.As mentioned earlier String should be under double quotes for the JSON to be valid. Also while you have posted &lt;CODE&gt;Details&lt;/CODE&gt; section, I think even Details is not the Root Node of JSON data.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; sourcetype=server_log "Class_Name" 
 | spath
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Ideally spath is the command supposed to traverse through JSON and XML data. If your _raw data has JSON within some additional non-json data, you would need to extract complete JSON data first. You would need to give us this pattern in case you need assistance with this scenario.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| makeresults&lt;/CODE&gt; is dummy command for us to cook up data as per the question and demo the functionality as a run anywhere search (obviously because we do not have access to actual data in your environment). In your case please try out the following SPL and confirm:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  sourcetype=server_log "Class_Name" 
 | rex "(?&amp;lt;=\"City\"\:)(?&amp;lt;Cities&amp;gt;[^\}]+)"
 | rex field=Cities "(?&amp;lt;city&amp;gt;[^\"]+)\"\:\s(?&amp;lt;count&amp;gt;[^\,\}]+)(,|\})" max_match=0
 | eval city2=mvindex(city,1),count2=mvindex(count,1)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Jul 2018 07:02:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429189#M122771</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-07-09T07:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429190#M122772</link>
      <description>&lt;P&gt;Hello @niketnilay, &lt;/P&gt;

&lt;P&gt;Thank you for your answer. Your concept of feeding only the city related data as field to next rex query instead of raw  helped me in solving my problem. &lt;/P&gt;

&lt;P&gt;I figured out a way for getting it. I fed in the values of city alone as field to the next rex query and extracted the value after city2 using this regular expression &lt;/P&gt;

&lt;P&gt;|rex "(?&amp;lt;"City"&amp;gt;(?&amp;lt;=City:).&lt;EM&gt;?(?:(?!city4).)&lt;/EM&gt;)"| rex field=City "(?&amp;lt;"second_City"&amp;gt;(?&amp;lt;=city2:).*?([^\s\,]+))"&lt;/P&gt;

&lt;P&gt;thank you once again. &lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 10:01:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429190#M122772</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-09T10:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429191#M122773</link>
      <description>&lt;P&gt;@saranyaa21 if this has resolved your issue, you would need to unaccept the previous answer and accept this one instead. You should also upvote the answer/comments that helped &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 10:05:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429191#M122773</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-07-09T10:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429192#M122774</link>
      <description>&lt;P&gt;Done Both &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thank You @niketnilay&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 10:09:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429192#M122774</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-09T10:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429193#M122775</link>
      <description>&lt;P&gt;You cripple the people who are trying to help you when you do not give us your actual data/structure.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 13:25:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429193#M122775</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2018-07-09T13:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get 3rd word using regex?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429194#M122776</link>
      <description>&lt;P&gt;@woodcock Sorry! was my mistake! &lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:10:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-3rd-word-using-regex/m-p/429194#M122776</guid>
      <dc:creator>saranyaa21</dc:creator>
      <dc:date>2018-07-11T07:10:50Z</dc:date>
    </item>
  </channel>
</rss>

