javascript - V8 的正则 split 的实现?出现诡异的结果
PHPz
PHPz 2017-04-11 11:26:19
[JavaScript讨论组]

理论上用正则对字符串进行 split 时,应是在匹配的每一个位置进行切割并扔掉匹配到的部分,然后以数组的形式返回

例如

',a,b,c,'.split(/,/) // return ['', 'a', 'b', 'c', '']
'abc'.split(/()/) // Expected to return ['', 'a', 'b', 'c', ''] as well

伪代码:

while (hasNextMatch()) {
  splitAt(matched().index)
  increaseLastIndex(matched().length || 1)
}

return calcResult()

完整实现:

function split(s, regex) {
  function implement() {
    while (hasNextMatch()) {
      splitAt(matched().index)
      increaseLastIndex(matched().length)
    }

    return calcResult()
  }

  function hasNextMatch() {
    return (lastMatch = regex.exec(s)) && (lastMatch = { index: lastMatch.index, length: lastMatch[0].length })
  }

  function matched() {
    return lastMatch
  }

  function increaseLastIndex(n) {
    regex.lastIndex += n || 1
    lastSplit += n
  }

  function splitAt(index) {
    result.push(s.substring(lastSplit, index))
    lastSplit = index
  }

  function calcResult() {
    result.push(s.substring(lastSplit, s.length))
    return result
  }

  var result = []
  var lastSplit = 0
  var lastMatch

  return implement()
}

console.log(split('abc', /()/g)) // [ '', 'a', 'b', 'c', '' ]

然而

'abc'.split(/()/g)

返回

['a', '', 'b', '', 'c']

PHPz
PHPz

学习是最好的投资!

全部回复(1)
ringa_lee

'abc'.split(/(?:)/g)

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号