ValidationExpression=\"^[a-zA-Z ]+$\"
this is my current regular expression but it does not accept .(dot). I need to use it for names. like \"R
This should work:
/[a-zA-Z]|\d|\s|\.*/