我有范围288-303
的以下正则表达式,但它在GVim中不起作用。
正则表达式为:/28[89]|29[0-9]|30[0-3]/
。
有人可以指出原因。我引用了Stack Overflow并从http://utilitymill.com/utility/Regex_For_Range/42获得了正则表达式。
答案 0 :(得分:9)
你必须在Vim中逃避管道:
:/28[89]\|29[0-9]\|30[0-3]/
修改强>
Per @ Tim的评论,您可以选择使用\v
作为模板的前缀,而不是转义单个管道字符:
:/\v28[89]|29[0-9]|30[0-3]/
谢谢@Tim。
答案 1 :(得分: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>)
注意\%(\)匹配括号而不是\(\)避免错误E872 :( NFA正则表达式)太多'('
脚本在341-399或400-699或700-752之间查看