Hi folks,
i have the following regex pattern, which is used to strip out non, alpha-numerics.
[^0-9A-Za-z]
Works pretty good.
I was hoping to mod this regex so it looks for alphanumerics AND spaces. How can i tweek it so it also accepts spaces?
cheers :)