Splunk Search

How to pass regular expression in variable to the match?

rsathish47
Contributor

HI All,

     How to pass regular expression to the variable to match command? Please help..

in Following search query we need to pass the value for nonsupporting days dynamically based on the criteria.

| gentimes start=-1 | eval CreateDateEpoch="1412136000" | table CreateDateEpoch | eval start=relative_time(CreateDateEpoch,"@d") | eval end=relative_time(now(),"@d") | eval Date=mvrange(start,end+86400,86400) | convert ctime(Date) timeformat="%+" | eval NoOfBusinessDays=mvcount(mvfilter(NOT match(Date,"(Sun|Sat).*")))

Ex:
eval nonsupport=if(value=1,"(Sun|Sat).*","(Mon|Sun).") | eval NoOfBusinessDays=mvcount(mvfilter(NOT match(Date,nonsupport*))

Thanks
Sathish Rangan

Tags (3)
0 Karma

woodcock
Esteemed Legend

You can either do this with a macro or with map. For an example of the latter, check out this answer:

https://answers.splunk.com/answers/386488/regex-in-lookuptable.html

0 Karma

richgalloway
SplunkTrust
SplunkTrust

A untested idea: put the variable name within single-quotes. ... | match(Date, 'nonsupport') ...

---
If this reply helps you, Karma would be appreciated.
0 Karma

rsathish47
Contributor

not working ;(

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...