If I want to get the length of each match within the parentheses in the following regex, how do I do it?:

^\(\-\+\s\)\+

I'm trying to modify the width of columns in a buffer with data that is laid out as a table. Since the first two rows of the table will look like this

 DESIGN_ID DESIGN_YEAR SOURCE_REFERENCE
---------- ----------- ----------------

I want to use the regular expression to find the current width of each column.

link|improve this question
you can save on escapings with the \v switch (very magic): \v^(-+\s)+ Escaping the - is not necessary in either case. – accolade Jun 25 '11 at 11:36
feedback

1 Answer

up vote 2 down vote accepted

Well, how do you want to capture it?

This will put it at the beginning of all the matching lines:

:%s/^-\+\%(\s-\+\)*\s\?$/\=strlen(submatch(0)) . ': '. submatch(0)

\= lets you substitute the result of a vimscript expression for a matching string. submatch(0) is the string matched (submatch(n) would be the nth group).

link|improve this answer
with very magic: :%s/\v^-+%(\s-+)*\s?$/\=strlen(submatch(0)) . ': '. submatch(0) – accolade Jun 25 '11 at 11:39
instead of using + and \? here, I'd suggest using \{1,} and \{-}, because both gives you a bit more flexibility and makes it easier to change around. [pattern]\{n,m} means match where pattern between n and m times. [pattern]\{n,-} the '-' operator makes it non-greedy – Jeff May 13 at 5:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.