Assuming 1) they all have a minus sign on the right, 2) you want a negative numerical value ["10.99-" is text] and 3) the cell you want to change is in A1, try this:
=0-VALUE(SUBSTITUTE(A1,RIGHT(A1,1),""))
SUBSTITUTE drops the minus sign, VALUE converts the text to a numerical value, which...