Here you can find the source of moneyDelFormat(String s)
public static String moneyDelFormat(String s)
//package com.java2s; //License from project: Apache License public class Main { public static String moneyDelFormat(String s) { String formatString = ""; if (s != null && s.length() >= 1) { formatString = s.replaceAll(",", ""); }// ww w . j a v a2 s . co m return formatString; } }