在JavaScript中以空格开头替换零

我们需要编写一个JavaScript函数,该函数接受一个表示数字的字符串。

用数字中的空格替换前导零。确保保留前面的空格。

例如:如果字符串值定义为-

"004590808"

然后输出应为-

"4590808"

示例

为此的代码将是-

const str = ' 004590808';

const replaceWithSpace = str => {

   let replaced = '';

   const regex = new RegExp(/^\s*0+/);

   replaced = str.replace(regex, el => {

      const { length } = el;

      return ' '.repeat(length);

   });

   return replaced;

};

console.log(replaceWithSpace(str));

输出结果

控制台中的输出将为-

4590808

以上是 在JavaScript中以空格开头替换零 的全部内容, 来源链接: utcz.com/z/331493.html

回到顶部