I\'m looking to find the equivalent in C# for the equivalent of this regex.
Java:
public static final String expression = \"[\\\\s\\\\p{Punct}]\"; >
Use this:
Regex regex = new Regex(@"[\s\p{P}]");
Note in particular the use of @.
@