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)
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...