Help me with a regular expression to include all the log details after a certain field,including newline tab etc something(?P
Thanks
Bella
You need to need the s
regex modifier.
(?s)(?<restoflogevent>.*)
You need to need the s
regex modifier.
(?s)(?<restoflogevent>.*)
With Build regex expression test it is working fine, but
...|table restoflogevent
gives the same result.