oninput="this.value = this.value.replace(/[^0-9]/g, '').replace(/(\..*)\./g, '$1');"
var replaceChar = /[~!@\#$%^&*\()\-=+_'\s\;<>\/.\`:\"\\,\[\]?|{}]/gi;
$("#~~").on("focusout", function() {
var x = $(this).val();
if (x.length > 0) {
if (x.match(replaceChar)) {
x = x.replace(replaceChar, "");
}
$(this).val(x);
}
}).on("keyup", function() {
$(this).val($(this).val().replace(replaceChar, ""));
});
var replaceNotFullKorean = /[ㄱ-ㅎㅏ-ㅣ]/gi;