Splunk Search

Ignoring Case on field values

DotTest37
Path Finder

Im extracting values on a field with this Reg ex:

<technology[^>]*>(?P<Technology>[^<]+)

It returns different values when uppercase and lowercase,, for example:
Audio
AUDIO
audio

How can I make it ignore the Case?
Thanks guys!!

Tags (2)
0 Karma

bwooden
Splunk Employee
Splunk Employee

Splunk is not case sensitive when it comes to field values so we can extract fields with mixed case and not worry about searching.
In other words, these searches would all return the same results:

technology=Audio
technology=AUDIO
technology=audio

NB: Fields are case sensitive, but the values are not. So these searches would NOT return the same result:

Technology=audio
TECHNOLOGY=audio
technology=audio

For reporting purposes, you may wish to show a consistent value. In this case, we can use the lower() or upper() functions of eval.

This will return audio

technology=AUDIO | eval technology=lower(technology)

This will return Audio

... | eval technology = if(len(technology)>0,upper(substr(technology,1,1)) + lower(substr(technology,2,len(technology))),technology)

carasso
Splunk Employee
Splunk Employee

You can have your regex ignore case with "(?i)" at the beginning of the line.

If your question is about how to have the value normalized to one value, try:

 ... | eval Technology=lower(Technology)
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...