Changes between Initial Version and Version 2 of Ticket #4072
- Timestamp:
- 03/29/20 04:56:23 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4072 – Description
initial v2 1 The editor's F4/Replace function with regex matching shows some broken behavior when the regex begins with the line start anchor, and matches whole lines. Try specifying " ^.*" for source and "X\0" for target pattern to try to prefix each line with an "X" to see the following behaviors:1 The editor's F4/Replace function with regex matching shows some broken behavior when the regex begins with the line start anchor, and matches whole lines. Try specifying "{{{^.*}}}" for source and "{{{X\0}}}" for target pattern to try to prefix each line with an "X" to see the following behaviors: 2 2 3 3 * For consecutive matching lines the replacement only happens on every other line, skipping each candidate that follows a matched line. Maybe matches on consecutive lines are considered overlapping? They shouldn't be.