how do I write an expression which checks for lowcaps, dots, and without any white space in the string?
the code below so far was trying to check for lowcaps and dots (i
'/^[a-z0-9.]+$/' should be the right regex.
'/^[a-z0-9.]+$/'