Quantcast
Channel: What's the difference between vim regex and normal regex? - Stack Overflow
Browsing latest articles
Browse All 6 View Live

Answer by butterywombat for What's the difference between vim regex and...

Try Vim's very magic regex mode. It behaves more like traditional regex, just prepend your pattern with \v. See :help /\v for more info. I love it.

View Article



Answer by Evgeni Sergeev for What's the difference between vim regex and...

There is a plugin called eregex.vim which translates from PCRE (Perl-compatible regular expressions) to Vim's syntax. It takes over a thousand lines of vim to achieve that translation! I guess it also...

View Article

Answer by J-P for What's the difference between vim regex and normal regex?

"Regular expression" really defines algorithms, not a syntax. What that means is that different flavours of regular expressions will use different characters to mean the same thing; or they'll prefix...

View Article

Answer by Bill Odom for What's the difference between vim regex and normal...

If by "normal regex" you mean Perl-Compatible Regular Expressions (PCRE), then the Vim help provides a good summary of the differences between Vim's regexes and Perl's::help perl-patternsHere's what it...

View Article

Answer by Benoit for What's the difference between vim regex and normal regex?

Too broad question. Run vim and type :help pattern.

View Article


What's the difference between vim regex and normal regex?

I noticed that vim's substitute regex is a bit different from other regexp. What's the difference between them?

View Article
Browsing latest articles
Browse All 6 View Live




Latest Images