Splunk Search

case insensitive transforms.conf

EricPartington
Communicator

is there a way to have case sensitive matches for transforms.conf?

I have a regex setting the sourcetype and index but i require matching some words with case insensitivity. is there a way to match insensitive as you would for a normal regex (i)

REGEX=:\d+\s([O|o|S|s|G|g][HOST|host].*[ABC|abc])[\w\d]+\s[

i would rather use a case insensitive regex if possible.

Tags (2)
0 Karma
1 Solution

gkanapathy
Splunk Employee
Splunk Employee

You put(?i) in your regex at the point you want it to be case-insensitive:

REGEX=(?i):d+s([osg][host].*[abc])[wd]+s[

or:

REGEX=:d+s(?i)([osg][host].*[abc])(?-i)[wd]+s[

or:

REGEX=:d+s(?i:([osg][host].*[abc]))[wd]+s[

View solution in original post

gkanapathy
Splunk Employee
Splunk Employee

You put(?i) in your regex at the point you want it to be case-insensitive:

REGEX=(?i):d+s([osg][host].*[abc])[wd]+s[

or:

REGEX=:d+s(?i)([osg][host].*[abc])(?-i)[wd]+s[

or:

REGEX=:d+s(?i:([osg][host].*[abc]))[wd]+s[

EricPartington
Communicator

works like a charm, thanks

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...