I\'ve a regex that matches comma separated numbers with an optional two digit decimal part in a given multiline text.
/(?<=\\s|^)\\d{1,3}(,\\d{3})*(\\.\\d
This answer treats with this question more comprehensively.