firstGroupMatch method

String? firstGroupMatch()

Implementation

String? firstGroupMatch() {
	for (int i = 1; i < this.groupCount; i++) {
		if (this.group(i) != null) {
			return this.group(i);
		}
	}

	return null;
}