0

How does one accomplish the following:

In Visual Studio 2013 include logical or in "find in files"

So I could do a search such as

http OR web

but the above syntax doesn't work.

4

2 回答 2

1

一位同事指出了以下正则表达式:

语法如下:选中“使用正则表达式”,然后搜索:

(http) |  (https) 

如果有人有更好的方法,请发表。

于 2016-08-23T15:22:08.613 回答
1

签入VS2017。

这就是你需要做的

在此处输入图像描述

其中 \b 用于匹配整个单词

于 2019-12-09T12:55:50.510 回答