How should I write the regular expression in VS2010’s search function?
I need to find randomly words that begins with ” and ends with “.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How about
"[^"]+"? That matches a quote, followed by one or more non-quote characters, followed by another quote.If you only want to allow ASCII alphanumeric characters (
A-Z, a-z, 0-9), use":a+".By the way, here are the docs for VS 2010 regular expressions.