How can I make the following regex ignore case sensitivity? It should match all the correct characters but ignore whether they are lower or uppercase.
G[a-b]
C#
using System.Text.RegularExpressions; ... Regex.Match( input: "Check This String", pattern: "Regex Pattern", options: RegexOptions.IgnoreCase)
specifically: options: RegexOptions.IgnoreCase