I have a string that contains multiple instances of a dollar sign followed by a positive number. I need to grab each instance out using regex.
Here\'s an example of a s
Regex.Match only returns the first match.
Use Regex.Matches to return all matches.