It doesn't seem to work, when I use it in my program nothing happens.
When I use this website
http://www.regular-expressions.info/javascriptexample.html and use "^(.+) \\- Microsoft Visual Basic 2008 Express Edition$" as regexp and "Start Page - Microsoft Visual Basic 2008 Express Edition" as subject string, the message is "No match".
Ah, after some messing with RegExp, I see that you had a slash to much, it has to be "^(.+)\ - Microsoft Visual Basic 2008 Express Edition$" Thankyou!