|
For regular expressions applied to the text of the response, existing pattern maps that use \D could match newline characters (and therefore more characters that you had intended).
Workaround: To match only non-digits within one line, change occurrences to [^\r\n0-9]. |