Real Vim ninjas count every keystroke - do you?

Pick a challenge, fire up Vim, and show us what you got.

Changelog, Rules & FAQ, updates: @vimgolf, RSS.

Your VimGolf key: please sign in

$ gem install vimgolf
$ vimgolf setup
$ vimgolf put 50b1d7239aad89000200002d

Extract text from xml

Extract text from xml file (ignoring commented out elements) and create a one line regex.

Start file
<list>
  <item>txt123</item>
  <!-- <item>txt124</item> -->
  <!-- <item>txt126</item> -->
  <item>txt127</item>
  <item>txt137</item>
  <!-- <item>txt145</item> -->
  <item>txt148</item>
  <!-- <item>txt150</item> -->
</list>
End file
^(txt123|txt127|txt137|txt148).*$

View Diff

1,10c1
< <list>
<   <item>txt123</item>
<   <!-- <item>txt124</item> -->
<   <!-- <item>txt126</item> -->
<   <item>txt127</item>
<   <item>txt137</item>
<   <!-- <item>txt145</item> -->
<   <item>txt148</item>
<   <!-- <item>txt150</item> -->
< </list>
---
> ^(txt123|txt127|txt137|txt148).*$

Solutions by @a24f0600:

Unlock 4 remaining solutions by signing in and submitting your own entry
Created by: @mhbvim

44 active golfers, 109 entries

Solutions by @a24f0600:
29
#7 - a24f0600 / @a24f0600

11/28/2012 at 12:51PM

35
#>14 - a24f0600 / @a24f0600

11/28/2012 at 12:45PM

35
#>14 - a24f0600 / @a24f0600

11/28/2012 at 12:55PM

38
#>21 - a24f0600 / @a24f0600

11/28/2012 at 12:36PM