Page 1 of 1

Macros for adding repetitive lines....

Posted: Tue Nov 27, 2007 1:30 pm
by mully31
:(

Can anyone tell me how, after say every 900 lines of code i can enter a small block of code and then repeat it for the whole rest of the script?!

Posted: Tue Nov 27, 2007 4:19 pm
by ben_josephs
Find what: (.*\r?\n){900}
Replace with: $0small block of code

[X] Regular expression
[X] Replacement format

Options
[X] '.' does not match a newline character