Regex help new

I have several differing lengths of line retrieved from a pdf and I want ONLY the dollar amounts at the end of each line. Example:

2020 Fall enrollment Not applicable 50,000 or More 10,522,757.00
2012 Total revenue per pupil Not applicable All School Systems 12,331.36

Thoughts?

I solved this myself.

Hi @Chris_Bolin,

(0|[1-9][0-9]{0,2})(,\d{3})*(.\d{1,2})?$

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.