<?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: Using where with a wildcard in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305717#M91775</link>
    <description>&lt;P&gt;@HattrickNZ, do you need a generalized version of the following command (based on which fields are present)?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| where P-CSCF-02&amp;gt;4  OR  P-CSCF-05&amp;gt;4 OR P-CSCF-06&amp;gt;4 OR P-CSCF-07&amp;gt;4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| where P-CSCF-02&amp;gt;4  AND  P-CSCF-05&amp;gt;4 AND P-CSCF-06&amp;gt;4 AND P-CSCF-07&amp;gt;4
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 28 Nov 2017 05:46:41 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-11-28T05:46:41Z</dc:date>
    <item>
      <title>Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305710#M91768</link>
      <description>&lt;P&gt;I want to dynamically remove a number of columns/headers from my stats. &lt;BR /&gt;
So my thinking is to use a wild card on the left of the comparison operator. &lt;BR /&gt;
But this does not work  &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;... | where "P-CSCF*"&amp;gt;4&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Sample Output: Say for example I just wanted to remove the columns &lt;CODE&gt;P-CSCF-02 &amp;amp; P-CSCF-06&lt;/CODE&gt; and have &lt;CODE&gt;P-CSCF-05 and P-CSCF-07&lt;/CODE&gt; showing. I would like to do it with something like &lt;CODE&gt;... | where "P-CSCF*"&amp;gt;1&lt;/CODE&gt; for example. I could use &lt;CODE&gt;fields +&lt;/CODE&gt; option but that is static I want something dynamic.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time                       P-CSCF-02   P-CSCF-05   P-CSCF-06   P-CSCF-07
2017-11-27T18:30:00.000+1300    1   2   0   6
2017-11-27T18:35:00.000+1300    0   2   0   6
2017-11-27T18:40:00.000+1300    0   2   0   6
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;EM&gt;EDIT1&lt;/EM&gt;&lt;BR /&gt;
This is my Desired Output with only 2 columns showing, the others omitted because they do not have any values &amp;gt; 1: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;_time                         P-CSCF-05 P-CSCF-07
2017-11-27T18:30:00.000+1300    2   6
2017-11-27T18:35:00.000+1300    2   6
2017-11-27T18:40:00.000+1300    2   6
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Should I be using something &lt;A href="https://answers.splunk.com/answers/396537/how-to-use-a-wildcard-in-a-where-clause.html"&gt;like&lt;/A&gt; &lt;CODE&gt;... | WHERE like(source,"/logs/%/camel-audit.log")]&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Not what I want but this is wildcarding on the RHS of the comparison &lt;A href="https://answers.splunk.com/answers/188664/how-to-use-a-wildcard-with-a-where-clause.html?utm_source=typeahead&amp;amp;utm_medium=newquestion&amp;amp;utm_campaign=no_votes_sort_relev"&gt;operator&lt;/A&gt;  &lt;CODE&gt;...|search version=*10_2*&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 20:35:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305710#M91768</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2017-11-27T20:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305711#M91769</link>
      <description>&lt;P&gt;How are you making it dymanic? A token?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 21:15:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305711#M91769</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-27T21:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305712#M91770</link>
      <description>&lt;P&gt;How about using &lt;CODE&gt;rex&lt;/CODE&gt; to extract the value in question, and then you can use &lt;CODE&gt;where&lt;/CODE&gt; to make the desired comparisons?&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;your base search | rex field=header_field "P-CSCF-(?&amp;lt;version_number&amp;gt;\d+)" | where version_number&amp;gt;1&lt;/CODE&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 22:10:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305712#M91770</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-27T22:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305713#M91771</link>
      <description>&lt;P&gt;That's a very clean solution.  I'm saving that in my book of tricks.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 22:56:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305713#M91771</guid>
      <dc:creator>mtulett_splunk</dc:creator>
      <dc:date>2017-11-27T22:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305714#M91772</link>
      <description>&lt;P&gt;Hi HattrickNZ,&lt;/P&gt;

&lt;P&gt;after checking the other answer, I must admin I don't understand how it works and thought of a different approach to make it dynamic. Take this run everywhere search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal date_minute=* 
| stats count by date_minute 
| eval header{date_minute}=date_minute 
| foreach header* 
    [ eval match=if(date_minute &amp;gt;= "30", "yes", "no")] 
| table date_minute match
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The first 3 lines just make up dummy data and the &lt;CODE&gt;foreach&lt;/CODE&gt; &lt;CODE&gt;eval&lt;/CODE&gt; actually would be threshold to filter on later.&lt;/P&gt;

&lt;P&gt;Hope this makes sense ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 00:40:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305714#M91772</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-11-28T00:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305715#M91773</link>
      <description>&lt;P&gt;hmm, looks like I don't understand how this works ?!? &lt;CODE&gt;¯\_(ツ)_/¯&lt;/CODE&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 00:42:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305715#M91773</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-11-28T00:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305716#M91774</link>
      <description>&lt;P&gt;Sure, I'm happy to explain my approach. As I understood the original post, @HattrickNZ would like to sort/filter the results based on the column headers, which all start with "P-CSCF-" and conclude with a number. My approach extracts that concluding number info a field called &lt;CODE&gt;version_number&lt;/CODE&gt;, which makes it available for sorting, filtering, etc. &lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 03:41:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305716#M91774</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-28T03:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305717#M91775</link>
      <description>&lt;P&gt;@HattrickNZ, do you need a generalized version of the following command (based on which fields are present)?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| where P-CSCF-02&amp;gt;4  OR  P-CSCF-05&amp;gt;4 OR P-CSCF-06&amp;gt;4 OR P-CSCF-07&amp;gt;4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Or &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| where P-CSCF-02&amp;gt;4  AND  P-CSCF-05&amp;gt;4 AND P-CSCF-06&amp;gt;4 AND P-CSCF-07&amp;gt;4
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Nov 2017 05:46:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305717#M91775</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-28T05:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305718#M91776</link>
      <description>&lt;P&gt;I still don't think this works, because your regex is using a specific field and the regex is on the value of that field not the field name itself. It could work if the field name &lt;CODE&gt;P-CSCF-02&lt;/CODE&gt; is actually in &lt;CODE&gt;_raw&lt;/CODE&gt;, but we don't know for sure.&lt;BR /&gt;
Don't take me wrong, my answer is also not really a good solution and just a workaround &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 08:10:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305718#M91776</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-11-28T08:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305719#M91777</link>
      <description>&lt;P&gt;You could try append the following to your time chart table:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| untable _time field count
| eventstats avg(count) as field_avg by field
| where field_avg &amp;gt; 1
| xyseries _time field count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That would remove all the field with an average lesser than 1. You can adjust depending on how you want to filter (use max, sum, min, etc.. instead of avg for example)&lt;/P&gt;

&lt;P&gt;If you explain in more details when you want to remove a column, I could give you a more complete answer.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 12:30:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305719#M91777</guid>
      <dc:creator>damien_chillet</dc:creator>
      <dc:date>2017-11-28T12:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305720#M91778</link>
      <description>&lt;P&gt;How about something like this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| foreach P-CSCF-* [ eval number=mvindex(split('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;', "-"), 2)]
| where number &amp;gt; 4
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Nov 2017 12:52:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305720#M91778</guid>
      <dc:creator>hettervik</dc:creator>
      <dc:date>2017-11-28T12:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305721#M91779</link>
      <description>&lt;P&gt;That's a fair point. I was assuming that the table being presented in the original post was the result of some &lt;CODE&gt;stats&lt;/CODE&gt; commands, based on the poster saying, "I want to dynamically remove a number of columns/headers from my stats." If so, my approach would allow the data to be filtered along the search pipeline. If not, then you're right that this would not be a full solution.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 16:15:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305721#M91779</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-28T16:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305722#M91780</link>
      <description>&lt;P&gt;I have edited my Q with the desired output if that helps. &lt;/P&gt;

&lt;P&gt;Of the options you propose, the OR option might be a solution, but the AND option I am not sure what that would achieve.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 20:27:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305722#M91780</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2017-11-28T20:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305723#M91781</link>
      <description>&lt;P&gt;I don't think we need the eventstats here. Just the untable command and where filter on field count should do it.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 20:42:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305723#M91781</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-28T20:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305724#M91782</link>
      <description>&lt;P&gt;tks for this attempt. it looks valuable. &lt;BR /&gt;
Although I want to filter by the value in the fields e.g. 1,2,0,6, not the actual field name  e.g. P-CSCF-02.&lt;/P&gt;

&lt;P&gt;hope that explains it. have edited my Q with my desired output.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 21:00:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305724#M91782</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2017-11-28T21:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305725#M91783</link>
      <description>&lt;P&gt;Ahh, yes. I definitely misunderstood the request, sorry!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 21:08:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305725#M91783</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-11-28T21:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305726#M91784</link>
      <description>&lt;P&gt;tks for this attempt. it looks valuable. &lt;BR /&gt;
Although I want to filter by the value in the fields e.g. 1,2,0,6, not the actual field name e.g. P-CSCF-02.&lt;/P&gt;

&lt;P&gt;hope that explains it. have edited my Q with my desired output.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 21:14:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305726#M91784</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2017-11-28T21:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305727#M91785</link>
      <description>&lt;P&gt;tks for this attempt. it looks valuable. &lt;BR /&gt;
Although I want to filter by the value in the fields e.g. 1,2,0,6, not the actual field name e.g. P-CSCF-02.&lt;/P&gt;

&lt;P&gt;hope that explains it. have edited my Q with my desired output.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 21:14:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305727#M91785</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2017-11-28T21:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305728#M91786</link>
      <description>&lt;P&gt;So, looking at all the examples and after having a night rest over it, I gave it another try and came up with a bit a different approach which builds a dynamic list of field names and uses a threshold to match on the value. Here is the run everywhere example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal date_minute=* 
| stats count by date_minute 
| eval header{date_minute}=date_minute 
| where 
    [ search index=_internal date_minute=* 
    | stats count by date_minute 
    | eval header{date_minute}=date_minute 
    | eval threshold=15, connector=" OR " 
    | foreach header* 
        [ eval total=if(isnull(total), "&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;" ."&amp;gt;=". threshold, total ."". connector ." ". "&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;" ."&amp;gt;=". threshold) ] 
    | table total 
    | rename total AS search ] 
| stats count by date_minute
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The important part is the &lt;CODE&gt;foreach()&lt;/CODE&gt; in the subsearch which basically builds a list like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| where header0&amp;gt;=15 OR header1&amp;gt;=15 OR header10&amp;gt;=15 OR header11&amp;gt;=15 OR header12&amp;gt;=15 OR header13&amp;gt;=15 OR header14&amp;gt;=15 OR header15&amp;gt;=15 OR header16&amp;gt;=15 OR header17&amp;gt;=15 OR header18&amp;gt;=15 OR header19&amp;gt;=15 OR header2&amp;gt;=15 OR header20&amp;gt;=15 OR header21&amp;gt;=15 OR header22&amp;gt;=15 OR header23&amp;gt;=15 OR header24&amp;gt;=15 OR header25&amp;gt;=15 OR header26&amp;gt;=15 OR header27&amp;gt;=15 OR header28&amp;gt;=15 OR header29&amp;gt;=15 OR header3&amp;gt;=15 OR header30&amp;gt;=15 OR header31&amp;gt;=15 OR header32&amp;gt;=15 OR header33&amp;gt;=15 OR header34&amp;gt;=15 OR header35&amp;gt;=15 OR header36&amp;gt;=15 OR header37&amp;gt;=15 OR header38&amp;gt;=15 OR header39&amp;gt;=15 OR header4&amp;gt;=15 OR header40&amp;gt;=15 OR header41&amp;gt;=15 OR header42&amp;gt;=15 OR header43&amp;gt;=15 OR header44&amp;gt;=15 OR header45&amp;gt;=15 OR header46&amp;gt;=15 OR header47&amp;gt;=15 OR header48&amp;gt;=15 OR header49&amp;gt;=15 OR header5&amp;gt;=15 OR header50&amp;gt;=15 OR header51&amp;gt;=15 OR header52&amp;gt;=15 OR header53&amp;gt;=15 OR header54&amp;gt;=15 OR header55&amp;gt;=15 OR header56&amp;gt;=15 OR header57&amp;gt;=15 OR header58&amp;gt;=15 OR header59&amp;gt;=15 OR header6&amp;gt;=15 OR header7&amp;gt;=15 OR header8&amp;gt;=15 OR header9&amp;gt;=15 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The &lt;CODE&gt;threshold&lt;/CODE&gt; value would be &lt;CODE&gt;1&lt;/CODE&gt; in your case and you have to tweak the example of course, but it will get you a dynamic search approach and something to start with.&lt;/P&gt;

&lt;P&gt;cheers, MuS &lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 21:18:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305728#M91786</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-11-28T21:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using where with a wildcard</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305729#M91787</link>
      <description>&lt;P&gt;What's your current full search?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 21:19:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Using-where-with-a-wildcard/m-p/305729#M91787</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-11-28T21:19:04Z</dc:date>
    </item>
  </channel>
</rss>

