C# equivalent of Java Punctuation regex
- by user325099
I'm looking to find the equivalent in C# for the equivalent of this regex.
Java:
public static final String expression = "[\s\p{Punct}]";
{Punct} is a reserved character class in Java but I'm not sure how to create the equivalent expression so that the .net regex engine doesn't barf.