regex = new Regex("(" + str1 + ")", RegexOptions.IgnoreCase);
I use these regular expressions to search for text ignoring case and substrings. But when I I give the characters as input, I get an exception ArgumentInvalid. How can I let this also look for characters? I use this expression in C # .Net
source
share