I tested a regex using:
Match match = Regex.Match(txtToMatch.Text,txtRegex.Text,RegexOptions.IgnoreCase);
if (match.Success) {
MessageBox.Show("success");
}
The regex that was used was /d. However, when I tested it on 9 it returned false. Why is this so?