我尝试使用" find& amp;来替换部分src属性路径替换"在visual studio 2013中使用正则表达式的web。这就是我想要的。
原始属性:
git pull
foofoofoo 可以包含任何字母或符号,除了" 并且 BLABLABLA 可以包含任何字母或符号,直到属性的末尾
新属性:
src="https://site.oldDomain.com/foofoofoo/screenhunterBLABLABLA"
答案 0 :(得分:1)
如果你使用正则表达式使用visual studio find-replace工具,那么我相信这对你有用:
搜索模式:
src="https://site\.oldDomain\.com.*?(screenhunter[^"]*")
并在替换框中,您可以输入:
src="newDomain/$1
$ 1是visual studio引用捕获组的方式(正则表达式中括号内的部分)。