Splunk Search

Need to escape % using LIKE.

dawfun
New Member

In my where command I need to use LIKE to match a string containing %. Something like this:

... | where LIKE(myField, "match % this") | ...

I need a literal match on "match % this", to exclude something like "match other things but not this".

So, any thoughts on how to find a literal "%"?

0 Karma
1 Solution

aljohnson_splun
Splunk Employee
Splunk Employee

Use the match function. It takes regular expressions.

| where match(myField, "match % this")

Docs here.

View solution in original post

ldongradi_splun
Splunk Employee
Splunk Employee

Using search instead of where will give you the solution, here.

| search myfield="match % this"
0 Karma

aljohnson_splun
Splunk Employee
Splunk Employee

Use the match function. It takes regular expressions.

| where match(myField, "match % this")

Docs here.

Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...