Hi, @benji2025, @ekopalypse, @alan-kilborn, @coises and All,
I did additional tests :
First, if the Word wrap option is enabled, using the same regex as before, with the Match Case option checked, the BookMarking operation took about the same time : 23.2 seconds
Secondly, after the BookMarking operation if you re-run the same regex, the whole operation is done in 16 seconds. This seems logical because n++ does not have to re-bookmark the already bookmarked lines !
Thirdly, if I do not check the Bookmark line option, in the Mark dialog, the Marking operation is a bit quicker : 19,4 seconds
Fourthly, if I select all the contents of the test file ( => the In selection box is automatically checked ) the operation is a bit slower : 23,8 seconds
Now, for all the tests below, I used these rules :
The Word wrap option is unchecked
In the Mark dialog, the Bookmark line option is checked and all the other box options are unchecked.
Generally the Match case option is unchecked but may be checked in few occasions.
Before each search, I hit the Clear all marks button and place the caret at the very beginning of the test file.
I did my tests twice : on my old XP machine, with N++ v7.9.2 and on my new W10 laptop, with N++ v8.7.6 ( @coises, I avoided, on purpose, using the v8.7.8 and v8.7.9 releases ! )
Each time, I opened N++, from a command prompt window, with the command Notepad++ -nosession Benji.txt Test_Benji.txt, so with only these two files.
For the W10 test, I simply used an USB key containing the portable N++ v8.7.6 release and the test file.
-------------------------- NEC XP - N++ v7.9.2 -------------------------------------------------------------------------------------------------------
(?-s)^.*\R(?=TEST$) 24 s Option 'Match Case' unchecked
(?-s)^.*\R(?=TEST$) 23.1 s Option 'Match Case' checked ( The test in my **previous** post )
(?-s)^.+\R(?=TEST$) 23.9 s Option 'Match Case' unchecked
(?-s)^.*+\R(?=TEST$) 19.9 s ( Atomic ) Option 'Match Case' unchecked
(?-s)^.++\R(?=TEST$) 19.8 s ( Atomic ) Option 'Match Case' unchecked
(?-s)^.++\r\n(?=TEST$) 18.6 s ( Atomic ) Option 'Match Case' unchecked
(?-s)^.++\r\n(?=TEST$) 17.7 s ( Atomic ) Option 'Match Case' checked
(?-is)^.++\r\n(?=TEST$) 69 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
--- Without the ^ symbol ---
(?-s).*\R(?=TEST$) 25.6 s Option 'Match Case' unchecked
(?-s).+\R(?=TEST$) 23.1 s Option 'Match Case' unchecked
(?-s).*+\R(?=TEST$) 21.5 s ( Atomic ) Option 'Match Case' unchecked
(?-s).++\R(?=TEST$) 19.2 s ( Atomic ) Option 'Match Case' unchecked
(?-s).++\r\n(?=TEST$) 18.1 s ( Atomic ) Option 'Match Case' unchecked
(?-s).++\r\n(?=TEST$) 17.25 s ( Atomic ) Option 'Match Case' checked
(?-is).++\r\n(?=TEST$) 237 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
--- Without the (?-s)^ part ---
.*\R(?=TEST$) 25.1 s Option 'Match Case' unchecked
.+\R(?=TEST$) 22.8 s Option 'Match Case' unchecked
.*+\R(?=TEST$) 21.2 s ( Atomic ) Option 'Match Case' unchecked
.++\R(?=TEST$) 18.9 s ( Atomic ) Option 'Match Case' unchecked
.++\r\n(?=TEST$) 17.8 s ( Atomic ) Option 'Match Case' unchecked
.++\r\n(?=TEST$) 17 s ( Atomic ) Option 'Match Case' checked
(?-i).++\r\n(?=TEST$) 236 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
--- Using the @Terry-R solution ---
(?-s).\R(?=TEST$) 77 s ( ?! ) Option 'Match Case' unchecked
(?-s).\r\n(?=TEST$) 71 s ( ?! ) Option 'Match Case' unchecked
(?-s).{1}+\R(?=TEST$) 93 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
(?-s).{1}+\r\n(?=TEST$) 84 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
.{1}+\R(?=TEST$) 88 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
.{1}+\r\n(?=TEST$) 79 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
--- After CONCATENATION of the line BEFORE the line TEST with the line TEST ---
First, the regex \R(?=TEST$) is replaced with NOTHING ( 57 s ) => 142,908,950 bytes for 3,030,301 lines. Then :
TEST$ 20.8 s Option 'Match Case' unchecked
TEST$ 13.6 s Option 'Match Case' checked
(?-i)TEST$ 13.8 s Option 'Match Case' unchecked
Last, the regex TEST$ is replaced with \r\n$0 ( 65 s )
-------------------------- HP Win 10 - N++ 8.7.6 -----------------------------------------------------------------------------------------------------
(?-s)^.*\R(?=TEST$) 2,3 s Option 'Match Case' unchecked
(?-s)^.*\R(?=TEST$) 2 s Option 'Match Case' checked ( The test in my **previous** post )
(?-s)^.+\R(?=TEST$) 2.3 s Option 'Match Case' unchecked
(?-s)^.*+\R(?=TEST$) 1.9 s ( Atomic ) Option 'Match Case' unchecked
(?-s)^.++\R(?=TEST$) 1.97 s ( Atomic ) Option 'Match Case' unchecked
(?-s)^.++\r\n(?=TEST$) 1.86 s ( Atomic ) Option 'Match Case' unchecked
(?-s)^.++\r\n(?=TEST$) 1.5 s ( Atomic ) Option 'Match Case' checked
(?-is)^.++\r\n(?=TEST$) 5.8 s ( Atomic ) ( ! ) Option 'Match Case' unchecked
---
--- Without the ^ symbol ---
(?-s).*\R(?=TEST$) 2.7 s Option 'Match Case' unchecked
(?-s).+\R(?=TEST$) 2.3 s Option 'Match Case' unchecked
(?-s).*+\R(?=TEST$) 2.3 s ( Atomic ) Option 'Match Case' unchecked
(?-s).++\R(?=TEST$) 1.9 s ( Atomic ) Option 'Match Case' unchecked
(?-s).++\r\n(?=TEST$) 1.8 s ( Atomic ) Option 'Match Case' unchecked
(?-s).++\r\n(?=TEST$) 1.45 s ( Atomic ) Option 'Match Case' checked
(?-is).++\r\n(?=TEST$) 23.9 s ( Atomic ) ( !? ) Option 'Match Case' unchecked
---
--- Without the (?-s)^ part ---
.*\R(?=TEST$) 2.7 s Option 'Match Case' unchecked
.+\R(?=TEST$) 2.23 s Option 'Match Case' unchecked
.*+\R(?=TEST$) 2.23 s ( Atomic ) Option 'Match Case' unchecked
.++\R(?=TEST$) 1.8 s ( Atomic ) Option 'Match Case' unchecked
.++\r\n(?=TEST$) 1.7 s ( Atomic ) Option 'Match Case' unchecked
.++\r\n(?=TEST$) 1.38 s ( Atomic ) Option 'Match Case' checked
(?-i).++\r\n(?=TEST$) 24 s ( Atomic ) ( ?! ) Option 'Match Case' unchecked
--- Using the @Terry-R solution ---
(?-s).\R(?=TEST$) 6.35 s ( ! ) Option 'Match Case' unchecked
(?-s).\r\n(?=TEST$) 8.6 s ( ! ) Option 'Match Case' unchecked
(?-s).{1}+\R(?=TEST$) 8.2 s ( Atomic ) ( ! ) Option 'Match Case' unchecked
(?-s).{1}+\r\n(?=TEST$) 10.6 s ( Atomic ) ( ! ) Option 'Match Case' unchecked
.{1}+\R(?=TEST$) 7.5 s ( Atomic ) ( ! ) Option 'Match Case' unchecked
.{1}+\r\n(?=TEST$) 9.75 s ( Atomic ) ( ! ) Option 'Match Case' unchecked
--- After CONCATENATION of the line BEFORE the line TEST with the line TEST ---
First, the regex \R(?=TEST$) is replaced with NOTHING ( 26.2 s ) => 142,908,950 bytes for 3,030,301 lines. Then :
TEST$ 2.3 s Option 'Match Case' unchecked
TEST$ 0.95 s Option 'Match Case' checked
(?-i)TEST$ 1 s Option 'Match Case' unchecked
Last, the regex TEST$ is replaced with \r\n$0 ( 25.3 s )
Conclusion :
So, given the rules above, the best syntaxes seem to be, on my new Windos 10 machine :
The regex .++\r\n(?=TEST$) in 1.38 second, with the Match Case option checked.
The regex TEST$ in 0.95 second, AFTER an initial contatenation of the line before the line TEST with the line TEST.
Best Regards,
guy038