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 Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

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

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...