| c# Programming Glossary: regexoptions.singlelineHow do you parse an HTML string for image tags to get at the SRC information? http://stackoverflow.com/questions/138839/how-do-you-parse-an-html-string-for-image-tags-to-get-at-the-src-information  htmlSource regexImgSrc RegexOptions.IgnoreCase RegexOptions.Singleline foreach Match m in matchesImgSrc  string href m.Groups 1 .Value.. 
 Characters in string changed after downloading HTML from the internet http://stackoverflow.com/questions/2700638/characters-in-string-changed-after-downloading-html-from-the-internet  m new Regex @ meta s . charset s s charset A Za z0 9_ RegexOptions.Singleline RegexOptions.IgnoreCase .Match html if m.Success  string charset.. 
 Cannot get regular expression work correctly with multiline http://stackoverflow.com/questions/289440/cannot-get-regular-expression-work-correctly-with-multiline  improve this question   i believe the option to use is RegexOptions.Singleline instead of RegexOptions.Multiline src . allowing . to match.. of the .NET framework you activate this mode by specifying RegexOptions.Singleline such as in Regex.Match string regex RegexOptions.Singleline.. 
 Regex to strip line comments from C# http://stackoverflow.com/questions/3524317/regex-to-strip-line-comments-from-c-sharp  in their entirety using this regular expression with RegexOptions.Singleline w W And I can match line comments comment in their entirety..  Keep the literal strings return me.Value RegexOptions.Singleline I ran this code on all the examples that Holystream provided.. 
 Aspx to Razor syntax converter? http://stackoverflow.com/questions/4422881/aspx-to-razor-syntax-converter  Open' ^ m2  return cleanExpr.Contains ' ' @ expr @ expr RegexOptions.Singleline code blocks string text5 Regex.Replace text4 @ code . m  string.. r n  return @ m2.Value  RegexOptions.ExplicitCapture RegexOptions.Singleline result Regex.Replace result @ d  m2 stringLiterals m2.Value.. 
 |