I am looking to find an 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 an equivalent expression, so the .net regex engine does not work.
source share