I have this string: \"NT-DOM-NV\\MTA\" How can I delete the first part: \"NT-DOM-NV\\\" To have this as result: \"MTA\"
How is it possible with RegEx?
string s = @"NT-DOM-NV\MTA"; s = s.Substring(10,3);