TextPad中的正则表达式模式搜索失败,适用于Visual Studio

Bur*_*ito 3 regex textpad

我正在尝试使用TextPad在多个文件中搜索正则表达式.我有一个简单的模式,但它在TextPad中不起作用.它在Visual Studio中工作正常.

有人有主意吗?

我正在寻找:

hosted.mysite.com or host.mysite.com
Run Code Online (Sandbox Code Playgroud)

使用模式:

(hosted|host)\.mysite\.com
Run Code Online (Sandbox Code Playgroud)

Bob*_*rez 5

使用这样的东西

\(hosted\|host\).mysite.com
Run Code Online (Sandbox Code Playgroud)