So I'm not very familiar with Regex, seen some tutorials and how it works, but I still don't get it!
Anyways, here's the current string that I have: ^[a-zA-Z0-9]*$
I want it to be able to use the following characters: [ ] ( ) | (and to be able to use spaces)
Edit: For spaces, lets say the following string: [Something] Something, is it alright to have the Regex like: ^[][a-zA-Z0-9 ]*$?