JS控制浮点数输入正则
需求:
1、过滤以0开头
2、去除所有非数字和小数点的字符
3、去掉重复的小数点
JS实时控制浮点数输入
amountWatcher (val, oldVal) {
console.log(val)
this.order.amount = val.replace(/^[0]+/, '')
this.order.amount = this.order.amount.replace(/[^\d.]|\.(?=[^.]*\.)/g, '')
}
Java校验字符串实现
String[] source = { "1,736, 233.00", " 236. 233.73", "36,233.235", "34.00" };
String[] result = new String[source.length];
for (int i = 0; i < source.length; i++) {
result[i] = source[i].replaceAll("([^\\d\\.]|\\.(?=[^\\.]*\\.))", "");
}
System.out.println(Arrays.toString(result));
// [1736233.00, 236233.73, 36233.235, 34.00]
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/12/js-controls-regular-input-of-floating-point-numbers/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
JS控制浮点数输入正则
需求:
1、过滤以0开头
2、去除所有非数字和小数点的字符
3、去掉重复的小数点
JS实时控制浮点数输入
amountWatcher (val, oldVal) {
console.log(val)
t……
文章目录
关闭
共有 0 条评论