I have a response:
MS1:111980613994 124 MS2:222980613994124
I have the following regex:
MS\d:(\d(?:\r?\n?)){15}
According to Regex, the "(?:\r?\n?)
" part should let it match for the group but exclude it from the capture (so I get a contiguous value from the group).
Problem is that for "MS1:xxx
" it matches the [CR][LF]
and includes it in the group. It should be excluded from the capture ...
Help please.