Splunk Search

What are the regex equivalents of the wildcards ... and *?

hulahoop
Splunk Employee
Splunk Employee

In inputs.conf and props.conf, the wildcards ... and * are supported for use in the spec headers. What do they translate to in PCRE? This is useful to know because sometimes the resulting matches are confusing.

Tags (1)
1 Solution

gkanapathy
Splunk Employee
Splunk Employee
  • ... (three periods) in source stanza headings is treated as .* in PCRE regex
  • * (asterisk) in source stanza headings is treated as [^/\\]* in PCRE regex
  • . (one period) in stanza headings is treated as \.
  • Note that all other PCRE syntax is also valid
  • Note that the expression must match the entire path. In regex terms, the expression has an implicit ^ at the beginning and an implicit $ at the end, and that must match the source value.

View solution in original post

Lowell
Super Champion

You may also find some of this helpful:

gkanapathy
Splunk Employee
Splunk Employee
  • ... (three periods) in source stanza headings is treated as .* in PCRE regex
  • * (asterisk) in source stanza headings is treated as [^/\\]* in PCRE regex
  • . (one period) in stanza headings is treated as \.
  • Note that all other PCRE syntax is also valid
  • Note that the expression must match the entire path. In regex terms, the expression has an implicit ^ at the beginning and an implicit $ at the end, and that must match the source value.

gkanapathy
Splunk Employee
Splunk Employee

BTW, a particular piece of PCRE regex that may be particularly useful is the prefix (?i), which indicates that the regex from that point on is case-in*sensitive. This should usually be used when trying to match Windows file paths, e.g., `[source::(?i)...\program files\applogs\.log]`

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...