问题描述
- 正则表达式:一串连续的数字 中间不能有空格(32 342——>32342)
-
正则表达式:一串连续的数字 中间不能有空格(32 342——>32342)
解决方案
替换全部的空
replace(/s/g, "");
解决方案二:
^d+$,这个只判断是不是一连串数字
解决方案三:
这个不需要正则表达式,replaceAll(" ","");即可
时间: 2024-10-22 23:18:18
替换全部的空
replace(/s/g, "");
解决方案二:
^d+$,这个只判断是不是一连串数字
解决方案三:
这个不需要正则表达式,replaceAll(" ","");即可