I am trying to split a sentence/phrase in to words using Regex.
var phrase = \"This isn\'t a test.\"; var words = Regex.Split(phrase, @\"\\W+\").ToList(); >
It doesn't really seem like you need a regex. You could just do:
phrase.Split(" ");