3

我有以下范围的正则表达式,288-303但它在 GVim 中不起作用。正则表达式是:/28[89]|29[0-9]|30[0-3]/.

谁能指出原因。我提到了 Stack Overflow 并从http://utilitymill.com/utility/Regex_For_Range/42获得了正则表达式。

4

2 回答 2

11

你必须在 Vim 中转义管道:

:/28[89]\|29[0-9]\|30[0-3]/

编辑:

根据@Tim 的评论,您可以选择为模式添加前缀,\v而不是转义单个管道字符:

:/\v28[89]|29[0-9]|30[0-3]/

谢谢@蒂姆。

于 2013-03-19T23:06:04.413 回答
0

根据 Jim 的回答,我编写了一个小脚本来搜索给定范围内的整数。您使用如下命令:

:Range 341 752

这将匹配两个数字 341 和 752 之间的每个数字序列。使用类似的搜索

/\%(3\%(\%(4\%([1-9]\)\)\|\%([5-9]\d\{1}\)\|\%(9\%([0-9]\)\)\)\)\|\%([4-7]\d\{2}\)\|\%(7\%(\%(0\%([0-9]\)\)\|\%([1-5]\d\{1}\)\|\%(5\%([0-2]\)\)\)\)

只需将其添加到您的 vimrc

function! RangeMatch(min,max) 
  let l:res = RangeSearchRec(a:min,a:max)
  execute "/" . l:res 
  let @/=l:res
endfunction  

"TODO if both number don't have same number of digit 
function! RangeSearchRec(min,max) " suppose number with the same number of digit 
if len(a:max) == 1 
  return '[' . a:min . '-' . a:max . ']'
endif 
if a:min[0] < a:max[0]  
  " on cherche de a:min jusqu'à 99999 x times puis de (a:min[0]+1)*10^x à a:max[0]*10^x
  let l:zeros=repeat('0',len(a:max)-1) " string (a:min[0]+1 +) 000000

  let l:res = '\%(' . a:min[0] .  '\%(' . RangeSearchRec( a:min[1:],   repeat('9',len(a:max)-1) ) . '\)\)' " 657 à 699

  if a:min[0] +1 < a:max[0]
    let l:res.= '\|' . '\%(' 
    let l:res.= '[' . (a:min[0]+1) . '-' .  a:max[0] . ']' 
    let l:res.= '\d\{' . (len(a:max)-1) .'}' . '\)' "700 a 900
  endif 

  let l:res.= '\|' . '\%(' . a:max[0] .  '\%(' . RangeSearchRec( repeat('0',len(a:max)-1) , a:max[1:] ) . '\)\)' " 900 a 957 

  return l:res
else 
  return  '\%(' . a:min[0] . RangeSearchRec(a:min[1:],a:max[1:]) . '\)' 
endif 
endfunction 
command! -nargs=* Range  call RangeMatch(<f-args>) 

请注意,\%(\) 匹配括号而不是 \(\) 避免了 ERROR E872: (NFA regexp) Too many '('

脚本看起来在 341-399 或 400-699 或 700-752 之间

于 2015-11-11T17:32:19.770 回答