111,092
社区成员




(?<=myfunction\()[^()]*(\([^()]+?\)[^()]*)*[^)]+?(?=\))
MatchCollection mc = Regex.Matches(str,@"(?<=myfunction\()[^()]*(\([^()]+?\)[^()]*)*[^)]+?(?=\))");
foreach (Match m in mc)
{
list.Add(m.Value);
}
(?<=myfunction[(])[^)]+?(?=[)])
MatchCollection mc = Regex.Matches(str,@"myfunction\([^)]*\)");