Returns the specified capture group for the specified match that was found using strfind()
getGroup(id, match, group)
Where
[h: id = strfind("this is a test", "(\\S+)\\s(\\S+)\\s*")]match 1, group 1 = [getGroup(id, 1, 1)]<br>match 1, group 2 = [getGroup(id, 1, 2)]<br>match 2, group 1 = [getGroup(id, 2, 1)]<br>match 2, group 2 = [getGroup(id, 2, 2)]<br>Returns
match 1, group 1 = this match 1, group 2 = is match 2, group 1 = a match 2, group 2 = test