show/hide this revision's text 2 Fixed a misread of the question

There appear to be three two problems.

  1. You're using the ^ inside a [] which effectively means not .
  2. You're using the ^ outside a [] which matches the start of the line
  3. 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])+"

show/hide this revision's text 1

There appear to be three problems.

  1. You're using the ^ inside a [] which effectively means not .
  2. You're using the ^ outside a [] which matches the start of the line
  3. 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)+"