1

Honestly, I find Regex a nightmare mainly due to the variety of engines available to Regex. However, knowing the engine and flavor names of a particular application helps me figure out what syntax I must follow.

For instance, Visual Studio uses the .NET engine. What is the name of vim's regex engine?

edit: As @Matt and @phd explained, flavor != engine. Vim has its own engine, but it has four flavors: nomagic, magic, very nomagic, very magic.

Rubem Pacelli
  • 332
  • 2
  • 12

1 Answers1

3

Well, I'm not an expert in this topic, but i think my research can be helpful.

What I have found so far is that Vim has it's own RegEx engine and this topic can be informative for you, because there are some explanations to why Vim has it's own engine.

Also on this wiki page you can find what features are supported in Vim.

Hope that I could help you a bit.

1nspir3d
  • 145
  • 1
  • 9