移除字符串首尾的 0 - JavaScript
我们需要编写一个 JavaScript 函数,该函数以一个字符串形式的数字为输入,并返回一个新的数字字符串,其中删除了所有前导和尾随 0
例如:如果输入为 -
const strNum = '054954000'
则输出应为 -
const output = '54954'
示例
代码如下 -
const strNum = '054954000'; const removeZero = (str = '') => { const res = ''; let startLen = 0, endLen = str.length-1; while(str[startLen] === '0'){ startLen++; }; while(str[endLen] === '0'){ endLen--; }; return str.substring(startLen, endLen+1); }; console.log(removeZero(strNum));
输出
控制台中显示的输出如下 -
54954
广告