Splunk Search

How to use the DOTALL option in a regular expression

tsingara
Engager

I'm running a regular expression on a string which runs for 5 or more lines. The first few words on the first line helps me determine if the rest of the sentence is useful for me.

rex "(?P<Application>\w+[a-zA-Z]*) (?P<Message>.*+)" | fields Application, Message | Search Application ="abc"

here I want to display results if my Application equates to "abc" which is at the beginning of my multi-line string, the Message variable has only the characters till the end of the first line, it does return characters from the second or third line

Search String

abc def

ghi

jkl

The Application variable equates "abc" and Message return only "def", but I want it to return "def ghi jkl".

How should the Regular expression be changed to achieve this?

Tags (1)
0 Karma
1 Solution

ahall_splunk
Splunk Employee
Splunk Employee

The correct nomenclature is to add (?ms) on the beginning - the s is dotall, and the m is multi-line. Thus:

rex field=_raw "(?ms)(?P<Application>\w+) (?P<Message>.*+)"

View solution in original post

ahall_splunk
Splunk Employee
Splunk Employee

The correct nomenclature is to add (?ms) on the beginning - the s is dotall, and the m is multi-line. Thus:

rex field=_raw "(?ms)(?P<Application>\w+) (?P<Message>.*+)"
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 ...