Sample of Search/Replace with regular expressions for Visual Studio

I haven’t found much info about this features, so here I go with a silly yet illustrative example.

Captura

Find => XamlFiles.Load\(“(\w*)”\)

Replace with => XamlFiles.Load(“$1.xaml”)

Replaces this

XamlFiles.Load(“MyFile”)

By this

XamlFiles.Load(“MyFile.xaml”)

Leave a comment