T
timor.super
I have a string, for example :
string str = "abCdEfGhiJKl";
to find "def", ignoring the case, i'm doing
if (str.toLower().Contains("def"))
{
// do something
}
How to do this with regex ?
Thanks for your help
string str = "abCdEfGhiJKl";
to find "def", ignoring the case, i'm doing
if (str.toLower().Contains("def"))
{
// do something
}
How to do this with regex ?
Thanks for your help