Splunk Search

capital letter, small letter (combine)

hylee
Explorer

When I put below

sourcetype="splunk_page_search" | top limit=10 keyword

the result..

1 AAA

2 aaa

3 BBB

4 ccc

.

.

.

actually, 1 and 2 are same.
just 1 is capital letters and 2 is small letters.
I want the result below

1 AAA

2 BBB

3 ccc

.

.

.

aaa is disappeared but it is included in AAA.
Is there any good idea?

0 Karma
1 Solution

ranjyotiprakash
Communicator

use eval function to either change your result to uppercase or Lowercase. Try the following search query :

sourcetype="splunk_page_search" | eval keyword=lower(keyword) | top limit=10 keyword

or

sourcetype="splunk_page_search" | eval keyword=upper(keyword) | top limit=10 keyword

I am not sure whether this will work or not. But you can try.

Go through the following splunk Documentation link text

View solution in original post

ranjyotiprakash
Communicator

use eval function to either change your result to uppercase or Lowercase. Try the following search query :

sourcetype="splunk_page_search" | eval keyword=lower(keyword) | top limit=10 keyword

or

sourcetype="splunk_page_search" | eval keyword=upper(keyword) | top limit=10 keyword

I am not sure whether this will work or not. But you can try.

Go through the following splunk Documentation link text

hylee
Explorer

Thank you so much!!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...