I couldn’t find anything regarding this on http://msdn.microsoft.com/en-us/library/bb982727.aspx.
Maybe I could use '[^]+' to match everything but that seems like a hack?
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.
Boost.Regex has a
mod_sflag to make the dot match newlines, but it’s not part of the TR1 regex standard. (and not available as a Microsoft extension either, as far as I can see)As a workaround, you could use
[\s\S](which means match any whitespace or any non-whitespace).