How can I include a blank space ' ' and a comma ',' in this simple regular expression?
\w{1,64}
\w corresponds to: [A-Za-z0-9_], viz avery char between a-z (case sensitive/insensitive), numbers between 0-9 and the underscore. I need to add space and comma to this. I've been trying directly whit
[A-Za-z0-9_, ]
but this did allow characters that I didn't want, like: \ / < > [ ] . : ; @ ^ so I've choosen \w. Any help will be appraised :)