| c# Programming Glossary: regexoptions.ignorecaseMobile Device Detection in asp.net http://stackoverflow.com/questions/13086856/mobile-device-detection-in-asp-net  up . browser link vodafone wap windows ce phone xda xiino RegexOptions.IgnoreCase RegexOptions.Multiline RegexOptions.Compiled static Regex MobileVersionCheck.. w3c webc whit wi g nc nw wmlb wonu x700 yas your zeto zte RegexOptions.IgnoreCase RegexOptions.Multiline RegexOptions.Compiled public static bool.. 
 How 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  matchesImgSrc Regex.Matches htmlSource regexImgSrc RegexOptions.IgnoreCase RegexOptions.Singleline foreach Match m in matchesImgSrc  string.. 
 Case insensitive Regex without using RegexOptions enumeration http://stackoverflow.com/questions/2439965/case-insensitive-regex-without-using-regexoptions-enumeration  match in C# using the Regex class without setting the RegexOptions.IgnoreCase flag What I would like to be able to do is within the regex.. all of the inputs I specified without having to set the RegexOptions.IgnoreCase flag. To force case sensitivity I can do i taylor . It looks.. 
 Is there an alternative to string.Replace that is case-insensitive? http://stackoverflow.com/questions/244531/is-there-an-alternative-to-string-replace-that-is-case-insensitive  suggest Regex.Replace strInput strToken strReplaceWith RegexOptions.IgnoreCase However for some reason when I try and replace PolicyAmount.. 
 How do I split a string by strings and include the delimiters using .NET? http://stackoverflow.com/questions/2484919/how-do-i-split-a-string-by-strings-and-include-the-delimiters-using-net  need a case insensitive match for the delimiters use the RegexOptions.IgnoreCase option Regex.Split input pattern RegexOptions.IgnoreCase EDIT.. RegexOptions.IgnoreCase option Regex.Split input pattern RegexOptions.IgnoreCase EDIT #2 the solution so far matches split tokens that might.. 
 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  Regex.Match response.ContentType @ s charset s s charset . RegexOptions.IgnoreCase if m.Success   charset m.Groups charset .Value.Trim new ' ''.. s . charset s s charset A Za z0 9_ RegexOptions.Singleline RegexOptions.IgnoreCase .Match html if m.Success  string charset m.Groups charset .Value.ToLower.. 
 C# regex to get video id from youtube and vimeo by url http://stackoverflow.com/questions/3652046/c-sharp-regex-to-get-video-id-from-youtube-and-vimeo-by-url  VimeoVideoRegex new Regex @ vimeo .com . # . videos 0 9 RegexOptions.IgnoreCase RegexOptions.Multiline public static readonly Regex YoutubeVideoRegex.. new Regex @ youtu .be be .com . v . a zA Z0 9 _ RegexOptions.IgnoreCase And in code i have var youtubeMatch url.match YoutubeVideoRegex.. 
 Regular Expression to get the SRC of images in C# http://stackoverflow.com/questions/4257359/regular-expression-to-get-the-src-of-images-in-c-sharp 
 LIKE operator in LINQ http://stackoverflow.com/questions/5374481/like-operator-in-linq  var regex new Regex sDischargePort RegexOptions.IgnoreCase var sPortCode Database.DischargePorts  .Where p regex.IsMatch.. 
 Way to have String.Replace only hit “whole words” http://stackoverflow.com/questions/6143642/way-to-have-string-replace-only-hit-whole-words  word boundaries. If you need it to be case insensitive use RegexOptions.IgnoreCase Regex.Replace input pattern replace RegexOptions.IgnoreCase.. 
 Using WebClient in C# is there a way to get the URL of a site after being redirected? http://stackoverflow.com/questions/690587/using-webclient-in-c-sharp-is-there-a-way-to-get-the-url-of-a-site-after-being-r  title Regex.Match source @ title b ^ s Title s S title RegexOptions.IgnoreCase .Groups Title .Value I want to store the URL and the page title... 
 Reading PDF documents in .Net [closed] http://stackoverflow.com/questions/83152/reading-pdf-documents-in-net  patterns i  Regex regex new Regex regExPattern RegexOptions.IgnoreCase  text regex.Replace text replace i  return text  #endregion.. 
 Activate existing browser window with given URL from C# application (without triggering reload) http://stackoverflow.com/questions/878429/activate-existing-browser-window-with-given-url-from-c-sharp-application-withou  int lParam Regex pattern new Regex Example Title of Page RegexOptions.IgnoreCase StringBuilder windowTitle new StringBuilder 256 GetWindowText.. 
 |