DEV Community

Stephen Charles Weiss
Stephen Charles Weiss

Posted on • Originally published at stephencharlesweiss.com on

Regex Search in VSCode

Finding all instances of an imported module in a large app can be challenging.

With the namespace for a module being restricted to the file, searching for a specific name can often lead you astray. The same name can be used for wildly different purposes across the app.

Furthermore, even if you what you’re looking for is only instances where a module has been imported, due to destructuring and the possibility of multiple imports from that resource, the results can be overwhelming to search through.

Take for instance my search for all instances where I imported Input from a library, repaint.

Searching for just Input I had ~1,500 results.

I could narrow that a bit by searching to for repaint, but I still had 300+ results in 250+ files. regex results 19

This is where Regex really shines. I know the module being imported and the library’s name, but because the pattern of import can change so much, finding them can be hard if I’m looking for an exact match.

I’m no expert, but after a few minutes with some resources I found the pattern I needed: input(.*)repaint.1

The pattern is specifying a very simple pattern: the strings input and repaint separated by any characters. Even this generic, basic pattern cut my results from hundreds or thousands … to 19. That’s efficiency. repaint results 323

NB: The Regex option needs to be turned on for this to work (select the .* icon or use the keyboard shortcut ⌥⌘R)

Resources

Latest comments (3)

Collapse
 
brampeirs profile image
Bram Peirs

EPIC!

Collapse
 
limitcracker profile image
Ioannis Gyftakis

Hi, how we can tweak this so we can get more than one line results?

Collapse
 
stephencweiss profile image
Stephen Charles Weiss

Sorry I missed this - looks like you want to add a [\n\s]+ to allow for multiple lines: code.visualstudio.com/updates/v1_2...

Cheers!