I have a regex on my C# code to check if the name that end user entered is valid, my regex deny double-byte characters like double-byte space.
The double-byte space like the space between quotation “ “ .
My regex: @"^[\p{L}\p{M}\p{N}' \.\-]+$"
.
I'm already tried to edit this regex to accept double-byte space, but I did not reach meaningful result.
So please if any one can edit this regex to accept double-byte space, I will be thankful for him.