Changes between Initial Version and Version 1 of Ticket #564, comment 11
- Timestamp:
- 02/19/20 18:42:50 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #564, comment 11
initial v1 2 2 3 3 Are named captures restricted to the same context in which they are used? 4 For example, if I were to use `?<p1>` for the first capture parameter, would I also run into the same issues when using `$p1` as if I'd used `$1`?4 For example, if I were to use the same name `?<p1>` for the first capture parameter in several places, would I also run into the same issues when using `$p1` as if I'd used `$1`? 5 5 6 6 The documentation very clearly uses numbered positional parameters in regex examples, which encourages developers to fall victim to this bug.