Change End Of Line
-
How can I change the End of Line, CR LF, on multiple rows. I need to move it from the current Col: 201 to 611
-
Hello Bonnie-Tuomala,
so you want to add spaces in front of the EOL chars until it reaches position 611?
Position might not be the same as column!?Cheers
Claudia -
@Claudia-Frank - Yes that is what I want to do. The total length needs to be 611. If I move the position manually it works. I have 3000+ lines to adjust.
-
@Bonnie-Tuomala I am writing this from my mobile and out of my mind, so I did not test it.
Open replace dialog, mark regular expression, which is in the left corner, and put the following
into the find what(.*{200})(\R)
And in replace with
\1__@__\2
@ needs to be replaced with 410 spaces.
Easiest way would be doing it for one line manully and copy the spaces between \1 and \2Cheers
Claudia -
I appreciate your help! This comes back with error “Find: invalid regular expression”
-
yes, of course,
(^.{200})(\R)
should do it.
And of course __@__ needs to be replaced with spaces, not only @.Cheers
Claudia -
Wow! That did it! Thanks Claudia - and Happy New Year!
-
Hello Bonnie,
thank you and a happy new year to you as well.
Cheers
Claudia