i have the expression that works well, but doesn't allow for spaces in the text. Does anyone know how I can fi this?
Code: Select all
/^[0-9a-zA-Z]+$/Cheers,
Doug
Moderator: General Moderators
Code: Select all
/^[0-9a-zA-Z]+$/actually, forget it. I figured it out.cardi777 wrote:Hi all,
i have the expression that works well, but doesn't allow for spaces in the text. Does anyone know how I can fi this?
I don't know regex well at all. Hoping its an easy one!Code: Select all
/^[0-9a-zA-Z]+$/
Cheers,
Doug
Code: Select all
/^[0-9a-zA-Z ]+$/