I am trying to match the below string. I am not able to get it right. Could someone please help?
string str = "test\tester";
if (Regex.IsMatch(str, "/\\/"))
MessageBox.Show("Match");
else
MessageBox.Show("Not match");
I am wondering what is the Regex pattern I should use to get this matched.