I'm trying to write a regex to search for a dollar amount that is $1000.00 or more and has a - in front. Also the $ should be optional.
This is what I have so far and it is not working as I expected :(
\-\$?(((\d{1,3},)+\d{3})|\d+)\.\d{2}
But it got triggered on a value -$73.75 when this value should have been ignored. Any pointers/ideas would be greatly appreciated :)