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