I am trying to extract some content from a response, with Regular Expressions.
However, I need the Regex to match all characters to dot ("."). This is also known as "dot matches all". There's also another interesting flag for Regexes which is whether the matching should be case insensitive.
How can I set those flags for a Regex capture in Neoload?
Neoload is based on java so you can you java regex flags.
In the Variable Extractor, if you switch to advance mode, the default query is "(.*)" which matches the document until the first line break.
To match all the document you can add the flag S using the following sintax: "(?s)(.*)"
When you are in the variable extractor panel, you can define your variable extractor based on a left and right boundary. This is the simple mode for creating variable extractor.
But if you switch to advanced mode by clicking on the "switch to advanced mode" button, you will be able to write your own regular expression.
Sorry i think i misunderstood your question. I do not think that NeoLoad supports flags but i will check and confirm.