How to select each N line in vscode?

How can I select all N lines in visual studio code. I can not find the correct regualr expression, can let me do this.

+4
source share
2 answers

Select multiple lines in VsCode

Visual code natively supports this functionality.

But you have to select the rows manually.

  • Hold the alt button and click where you want to select the data.

enter image description here

  1. You can also select multiple lines enter image description here

Read More: Visual Studio Documentation

+1
source
  • Ctrl + H
  • Check out the regular export icon. *
  • Search: (^. *? $ [\ N]) {9}

RegExp [ed. ] 9 - .

?

0

Source: https://habr.com/ru/post/1678350/


All Articles