• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

替换字符串的前N个出现次数

用户头像
it1352
帮助1

问题说明

如何在以下字符串中替换第一个 N 出现的许多空格和制表符:

How can I replace first N occurrences of many whitespaces and tabs in the following string:

07/12/2017  11:01 AM             21523 filename with s p a c  e  s.js

我期待以下结果:

07/12/2017|11:01|AM|21523|filename with s p a c  e  s.js

我只知道通过调用replace N 相同字符串上的次数

I know not very elegant option only via calling replace N times on the same string

.replace(/\s /, "|").replace(/\s /, "|").replace(/\s /, "|");

值得一提的是,我将在近1,000,000行运行此项,因此性能至关重要。

Worth to mention that I'm going to run this on near 1,000,000 lines so performance matters.

正确答案

#1

你可以拿一个计数器并递减它。

You could take a counter and decrement it.

var string = '07/12/2017  11:01 AM             21523 filename with s p a c  e  s.js',
    n = 4,
    result = string.replace(/\s /g, s => n ? (n--, '|') : s);
    
console.log(result);

你可以替换三元表达式一个具有逻辑AND和OR。

You could replace the ternary expression with one with logical AND and OR.

var string = '07/12/2017  11:01 AM             21523 filename with s p a c  e  s.js',
    n = 4,
    result = string.replace(/\s /g, s => n && n-- && '|' || s);
    
console.log(result);

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfjaie
系列文章
更多 icon
同类精品
更多 icon
继续加载