Alright, I\'ve read the tutorials and scrambled my head too much to be able to see clearly now.
I\'m trying to capture parameters and their type info from a function
Generally, you'd need two steps to get all data.
First, match/validate the whole function:
function\((?((\/\*[a-zA-Z]+\*\/)?[0-9a-zA-Z_$]+,?)*)\)
Note that now you have a parameters group with all parameters. You can match some of the pattern again to get all matches of parameters, or in this case, split on ,.
If you're using .Net, by any chance, you're in luck. .Net keeps full record of all captures of each group, so you can use the collection:
match.Groups["param"].Captures
Some notes:
(?(\/\*[a-zA-Z]+\*\/)?) / has no special meaning there (C#/.Net doesn't have regex delimiters).Here's an example of using the captures. Again, the main point is maintaining the relation between type and param: you want to capture empty types, so you don't lose count.
Pattern:
function
\(
(?:
(?:
/\*(?[a-zA-Z]+)\*/ # type within /* */
| # or
(?) # capture an empty type.
)
(?
[0-9a-zA-Z_$]+
)
(?:,|(?=\s*\))) # mandatory comma, unless before the last ')'
)*
\)
Code:
Match match = Regex.Match(s, pattern, RegexOptions.IgnorePatternWhitespace);
CaptureCollection types = match.Groups["type"].Captures;
CaptureCollection parameters = match.Groups["param"].Captures;
for (int i = 0; i < parameters.Count; i++)
{
string parameter = parameters[i].Value;
string type = types[i].Value;
if (String.IsNullOrEmpty(type))
type = "NO TYPE";
Console.WriteLine("Parameter: {0}, Type: {1}", parameter, type);
}