I have a string
var numb = "R$ 2000,15"
I would like to cut two last numbers and comma,and R$ with space, to get result => 2000.
I tried with regex: (?!\d{1,5}),(?:\d{2}) and it takes result: R$ 2000. So now I would like to remove R$ with space.
Any help?
