0

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?

mpen
  • 256,080
  • 255
  • 805
  • 1,172

2 Answers2

2
foreach (var c in m.Groups["class"].Captures)
{
    Console.WriteLine(c);
}

Hurray for guessing.

Callum Rogers
  • 15,231
  • 16
  • 65
  • 89
mpen
  • 256,080
  • 255
  • 805
  • 1,172
1
m.Groups["class"]
SLaks
  • 837,282
  • 173
  • 1,862
  • 1,933
  • Yeah.. see, that part I knew, but `.Value` only returns the last match it seems. It's `.Captures` that I was looking for. – mpen Oct 03 '10 at 19:28