I have a problem when I need to use RegularExpressionValidator to limit the string length to 400 characters.
My expression was .{0,400}
My question is: is there a way to limit the length of characters to 400 without considering spaces?
I want to be able to accept spaces in a string, but not take it into length. Is it possible?
Boopid
source share