Remove decimal and Coma from Number/String

Task 1
Input 2,000,000.00
Output 2000000

Task2
Input 45.0000
Output 45

#help #question

@Tate_S

Please try this

Cint(str.Replace(",",""))

cheers

we can ensure correct number handling e.g by Double parsing:
grafik