rNumbers constant Null safety
Matches all numbers, including those delimited with periods and or commas.
Implementation
static const rNumbers = r'(?<=^|\W)(\d|((?<=\d)[,.]{1}(?=\d)))+(?=$|\W)';
Matches all numbers, including those delimited with periods and or commas.
static const rNumbers = r'(?<=^|\W)(\d|((?<=\d)[,.]{1}(?=\d)))+(?=$|\W)';