C# (Sharp) Programming Language Question:

Is there regular expression (regex) support available to C# developers?

C# (Sharp) Programming Language Interview Question
C# (Sharp) Programming Language Interview Question

Answer:

Yes. The .NET class libraries provide support for regular expressions. Look at the documentation for the System.Text.RegularExpressions namespace.


Previous QuestionNext Question
What is the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception? Does C# support try-catch-finally blocks?Is there a way to force garbage collection?