vote up 0 vote down star
1

So I've got a big text file which looks like the following:

<option value value='1' >A
<option value value='2' >B
<option value value='3' >C
<option value value='4' >D

It's several hundred lines long and I really don't want to do it manually. The expression that I'm trying to use is:

<option value='.{1,}' >

Which is working as intended when i run it through several online regular expression testers. I basically want to remove everything before A, B, C, etc. The issue is when I try to use that expression in Vim and Notepad++, it can't seem to find anything.

Thank you.

flag

46% accept rate

10 Answers

vote up 1 vote down check

Everything before the A, B, C, etc.

That seems so simple I must be misinterpreting you. It's just

:%s/<.*>//
link|flag
In vim, that is. – Whaledawg Nov 13 '08 at 17:25
vote up 4 vote down

This will remove the option tag and just leave the letters in vim:

:%s/<option.*>//g
link|flag
vote up 1 vote down

It may help if you're less specific. Your expression there is "greedy", which may be interpreted different ways by different programs. Try this in vim:

%s/^<[^>]+>//
link|flag
The '+' needs to be escaped: ^<[^>]\+> for this expression to work. I like this version better than the @xsl answer that is getting voted up. – Sixto Saez Nov 13 '08 at 17:33
Shoot, you're right, thanks for the correction. And thanks; I always believe simpler is better, esp. when it comes to regex. – Lucas Oman Nov 13 '08 at 19:08
vote up 0 vote down

This will work. Tested it in my vim. the single quotes are the trouble.

1,$s/^<option value value=['].['] >/
link|flag
vote up 0 vote down

Vim:

:%s/.* >//

link|flag
vote up 4 vote down

There are two problems with your original solution. Firstly, your example text:

<option value value='1' >A

has two occurences of the "value" word. Your regex does not. Also, you need to escape the opening brace in the quantifier of your regex or Vim will interpret it as a literal brace. This regex works:

:%s/<option value value='.\{1,}' >//g
link|flag
vote up 0 vote down

There is a very simple solution to this unless I have not understood the problem. The following regular expression:

(.)(>)(.)

will match the pattern specified in your post.

So, in notepad++ you find (.)(>)(.) and replace it with \3.

The regular expressions are basically greedy in the sense that if you specify (.*) it will match the whole line and what you want to do is break it down somehow so that you can extract the string you want to keep. Here, I have done exactly the same and it works fine in Notepad++ and Editplus3.

link|flag
vote up 1 vote down

In vim

:%s/<option value='.\{1,}' >//

or

:%s/<option value='.\+' >//

In vim regular expressions you have to escape the one-or-more symbol, capturing parentheses, the bounded number curly braces and some others.

See :help /magic to see which special characters need to be escaped (and how to change that).

link|flag
vote up 0 vote down

Thanks for everyones replies.

Learned a bit more about regular expressions.

link|flag
vote up 0 vote down

In Notepad++ :

<option value value='1' >A
<option value value='2' >B
<option value value='3' >C
<option value value='4' >D


Find what: (.*)(>)(.)
Replace with: \3

Replace All


A
B
C
D
link|flag

Your Answer

Get an OpenID
or

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