Clears all regex match group variables.
()
| 548 | * Clears all regex match group variables. |
| 549 | */ |
| 550 | protected void clearMatchGroups() { |
| 551 | for (int i = 1; i <= lastMatchCount; i++) { |
| 552 | setVariableValue(Integer.toString(i), ""); |
| 553 | } |
| 554 | lastMatchCount = 0; |
| 555 | } |
| 556 | |
| 557 | |
| 558 | /** |
no test coverage detected