views:

74

answers:

2

I have a form validation message for the user name field which says the following

Name can only contain alphabets, '.' and ' ' characters

OR should it be

Name can only contain alphabets, dot and space characters

OR should it be

Name can only contain alphabets, dot (".") and space (" ") characters

Which is preferable from a usability perspective assuming the end users has very less exposure to computers.

+3  A: 
  • Use 'letters of the alphabet' not 'alphabets'
  • rather than 'characters' ''.'' or ("."), why not just show the character on for instance a different background

So something like:

Name can only contain letters of the alphabet, . and spaces

UpTheCreek
+1 for the different background and having the dot in bold
ThanosPapathanasiou
+4  A: 

A suggestion: include examples.

Name can only contain letters, dots or spaces. 
E.g. <i>Yoda</i>, <i>Han.Solo</i> or <i>Darth Vader</i> ...
The MYYN
+1 for the examples. And for the correct formatting, as I think that listing the characters - maybe with quotation marks and/or parenthesis - kind of misses the point of being helpful.
Jawa
+1 for examples - always a good idea!
UpTheCreek