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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...