Is there any way to completely ignore line break and tab characters etc. in RegEx? For instance, the line break and tab characters could be found anywhere and in any order
do you need the tab/newline? You could always just replace the tab/newline character with an empty character to remove them.
string mystring = "\t\nhi\t\n";
string mystring_notabs = mystring.Replace("\t",""); //remove tabs
mystring = mystring_notabs.Replace("\n",""); //remove newline and copy back to original