정규표현식으로 콤마 제거




/* array comma 제거 */

function util_uncomma(str) {

    str = String(str);

    return str.replace(/[^\d]+/g, '');

}


+ Recent posts