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!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...