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!

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 ...