I have a string:
Hello \"quoted string\" and \'tricky\"stuff\' world
and want to get the string minus the quoted parts back. E.g.,>
Use a regular expression to match any quoted strings with the string and replace them with the empty string. Use the Regex.Replace() method to do the pattern matching and replacement.
Regex.Replace()