I want to convert Indian Currency into double. Below is my code:
String initalAmount = "2341";
Format format = NumberFormat.getCurrencyInstance(new Locale("en", "in"));
String convertedAmountToINR = format.format(new BigDecimal(initalAmount));
// it prints Rs. 2,341.00
Now, I want to convert it into DOUBLE like 2341.00. I tried couple of ways to get it worked but didn't.