Tuesday, July 30, 2013

Re: Regexp help

On 30.07.13 06:57, Ben Fritz wrote:
> Maybe better using "very magic":

Everything's better with \v ;-)

> \v<\d+>\.@!

On the test line:

123 123.0 123. 456 0.123 .123 789

that regex also detects the fractional parts as integers, so it still
needs a tweak. This seems to do it:

/\v\.@<!<\d+>\.@!

But even that finds 06 and 57 in 06:57. Whether they are desired
integers may vary between use cases. Admittedly they'll probably only
crop up in rare strings in a fortran program.

Erik

--
Mollison's Bureaucracy Hypothesis:
If an idea can survive a bureaucratic review and be implemented
it wasn't worth doing.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments: