Answers for "remove all empty lines visual code"

1

remove all lines starting with visual code

If you want to delete the entire line make your regex find the entire line and include the linefeed as well. Something like:

^.*(word1|word2|word3).*n
Then ALT-Enter will select all lines that match and Delete will eliminate them including the lines they occupied.
Posted by: Guest on July-13-2021
-1

remove empty lines visual studio

^(?([^rn])s)*r?$r?n
Posted by: Guest on June-22-2020
0

vs code delete empty lines

in find & replace put ^n with regex enabled in find and rpelace with blank.
Posted by: Guest on May-24-2021

Code answers related to "remove all empty lines visual code"

Browse Popular Code Answers by Language