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!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...