I'm using below regular expression to match numbers that includes decimals, negative numbers inside quotes ("). What changes should I be doing so that it does not match "#1200"?
\"(-?\d*.?\d+)\"
"1200"     ---> matches as expected
"1200.67"  ---> matches as expected
"-1200"    ---> matches as expected
"-1200.67" ---> matches as expected
"#1200"    ---> I'm not expecting this to match. As you can see It has # at the beginning.
 
    