Since there is a lot to type for each replacement, I am combining many regex into one. But this resulting in a very long line. Can I somehow split a regex into multiple lines in this module? Something like:
filter {
search_pattern "(todelete1\
|todelete2\
|todelete3)"
replacement ""
content_type html
}
Thank you.
Since there is a lot to type for each replacement, I am combining many regex into one. But this resulting in a very long line. Can I somehow split a regex into multiple lines in this module? Something like:
Thank you.