I have this:
var regex=/[a-z\d,]+$/i;
if (!/[a-z\d,]+$/i.test(user_input)){
alert('format is invalid');
}
This works, but when I want to include the " " character (space) in the regex, the function fails or doesn't trigger the block inside the if statement.
var regex=/[a-z\d ,]+$/i;
What am I doing wrong? Thanks in advance
/[a-z\d ,]+$/i.test('A, b')works fine for me. – Rocket Hazmat Aug 9 '12 at 18:06