JS正则表达式引擎-具有有限数量级别的递归

时间:2018-11-27 10:45:53

标签: javascript regex

使用:JavaScript正则表达式

https://regex101.com/r/bWkBpD/2

function {
  if () {
    if {}
  }
}

// I do not want to match this (only 3 level nesting not 4):

function {
  if () {
    if {
      if {}
    }
  }
}

我知道JavaScript正则表达式引擎不包括平衡组递归等。这就是为什么我需要有限数量的水平的原因。

我必须匹配的内容(仅3级嵌套):

function {
  if () {
    if {}
  }
}

0 个答案:

没有答案