I've written a regex...
internal static readonly Regex _parseSelector = new Regex(@"
(?<tag>"+_validName+@")?
(?:\.(?<class>"+_validName+ @"))*
(?:\#(?<id>"+_validName+ @"))*
(?<attr>\[
\])*
(?:\:(?<pseudo>.+?))*
", RegexOptions.IgnorePatternWhitespace);
Now I want to get all the "class" bits...
var m = _parseSelector.Match("tag.class1.class2#id[]:pseudo");
How do to retrieve the list class1, class2
from the match object?