Tim Chase wrote:
> On 2013-08-09 00:46, rameo wrote:
>
>> I have trouble finding the correct regex.
>>
>> I know that a sequence of characters enclosed in brackets means
>> their optional: [xyz] means any 'x' OR 'y' OR 'z'
>>
>> but how can I find them all?
>> any 'x' AND 'y' AND 'z' in whatever sequence and quantit
>>
all together? -- like any 3 matching?
/[xyz]\{3\}
or an x y or z anywhere in the line?
[xyz]\+
--
--
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.
Friday, August 9, 2013
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment