rNumbers constant

String const rNumbers

Matches all numbers, including those delimited with periods and or commas.

Implementation

static const rNumbers = r'(?<=^|\W)(\d|((?<=\d)[,.]{1}(?=\d)))+(?=$|\W)';