up vote 3 down vote favorite
share [g+] share [fb]

My regular expression needs to be able to find the strings:

  1. Visual Studio 2008
  2. Visual Studio Express 2008
  3. Visual Basic 2008
  4. Visual Basic Express 2008
  5. Visual C++ 2008
  6. Visual C++ Express 2008

and a host of other similar variants, to be replaced with this one single string

Visual Studio 2005

I tried "Visual (Basic|C++|Studio) (Express)? 2008", but it is not working. Any ideas?

Edit: Now I have tried "Visual (Basic)|(C++)|(Studio) (Express )?2008", but the replaced line becomes "Visual Studio 2005 Express 2008" for the input "Visual Basic Express 2008".

link|improve this question

72% accept rate
feedback

8 Answers

up vote 7 down vote accepted

It should be

"Visual (Basic|C\+\+|Studio)( Express)? 2008"

>>> import re
>>> repl = 'Visual Studio 2005'
>>> regexp = re.compile('Visual (Studio|Basic|C\+\+)( Express)? 2008')
>>> test1 = 'Visual Studio 2008'
>>> test2 = 'Visual Studio Express 2008'
>>> test3 = 'Visual C++ Express 2008'
>>> test4 = 'Visual C++ Express 1008'
>>> re.sub(regexp,repl,test1)
'Visual Studio 2005'
>>> re.sub(regexp,repl,test2)
'Visual Studio 2005'
>>> re.sub(regexp,repl,test3)
'Visual Studio 2005'
>>> re.sub(regexp,repl,test4)
'Visual C++ Express 1008'
link|improve this answer
Thanks, this is the answer. Sometimes regex can be a bit confusing :) – Graviton Oct 6 '08 at 15:11
Wow, this is exactly what I said, without spoonfeeding. O well... – leppie Oct 6 '08 at 15:34
SO is many times about spoonfeeding – Vinko Vrsalovic Oct 6 '08 at 21:37
feedback

In the case without an Express, you are looking for 2 spaces before the year. That is no good. Try this:

"Visual (Basic|C\+\+|Studio) (Express )?2008"

Depending on the input, it might be enough to use:

"Visual [^ ]+ (Express )?2008"
link|improve this answer
feedback

Try this: "Visual (Basic|C\+\+|Studio) (Express )?2008"

link|improve this answer
feedback

You need to escape the special characters (like +). Also the 'express' bit, should have a space on either side.

link|improve this answer
feedback

Unless your sample input is riddled with all sorts of permutations of your keywords, you could simplify it immensely with this:

Visual .+? 2008
link|improve this answer
That would need a non greedy quantifier, in case your input has two 2008 instances... like Visual .+? 2008 – Vinko Vrsalovic Oct 6 '08 at 15:17
Good catch. I've edited the post to reflect your change. – indiv Oct 6 '08 at 15:33
feedback

i think this should works

/visual (studio|basic|c\+\+)? (express)?\s?2008/i
link|improve this answer
feedback

Try with:

Visual (Basic|C\+\+|Studio)( Express)? 2008

that is, quote the '+' of 'C++' and include the space in "Express"

Since it's Python and you don't need the parenthesized parts:

Visual (?:Basic|C\+\+|Studio)(?: Express)? 2008
link|improve this answer
feedback

This is more explicit with spaces:

Visual\s(Basic|C\+\+|Studio)(\sExpress)?\s2008
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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