| 515 | } |
| 516 | |
| 517 | TextView |
| 518 | Context::active_group(int idx) |
| 519 | { |
| 520 | auto ovector = pcre2_get_ovector_pointer(_rxp_active); |
| 521 | idx *= 2; // To account for offset pairs. |
| 522 | TS_DBG("Access match group %d at offsets %ld:%ld", idx / 2, ovector[idx], ovector[idx + 1]); |
| 523 | return _rxp_src.substr(ovector[idx], ovector[idx + 1] - ovector[idx]); |
| 524 | } |
| 525 | |
| 526 | unsigned |
| 527 | Context::ArgPack::count() const |
no test coverage detected