There appear to be three two problems.
- You're using the ^ inside a [] which effectively means not .
- You're using the ^ outside a [] which matches the start of the line
- You're not using a * or + which means you will only match a single character.
I think you want the following regex @"([a-zA-Z0-9]|\s)+""([^a-zA-Z0-9\s])+"
