at
at(index: Integer): JadeRegexMatch;
The at method of the JadeRegexResult class returns the JadeRegexMatch at the position specified in the index parameter; for example:
foreach i in 1 to matchCount do
match := matches.at(i);
write match.value;
tagName := match.at(1);
innerHtml := match.at(2);
write Tab & "Tag: " & tagName.value;
write Tab & "inner: " & innerHtml.value;
endforeach;
2020.0.01 and higher