Visual Studio 2013 正则表达式 查找和替换
Visual Studio 2013 regular expression To find and replace
在 Visual Studio 2013 中,我如何创建一个正则表达式来查找所有出现的情况如下:
id="Restaurant_Viandes_Grillades" type="checkbox">
id="Another_Restaurant2" type="checkbox">
id="Another_Restaurant3" type="checkbox">
// All name Restaurants have underscore
...
并将其替换为:>
?
我找到了我必须找到的答案:id="([a-z_ A-Z]*)" type="checkbox">
在 Visual Studio 2013 中,我如何创建一个正则表达式来查找所有出现的情况如下:
id="Restaurant_Viandes_Grillades" type="checkbox">
id="Another_Restaurant2" type="checkbox">
id="Another_Restaurant3" type="checkbox">
// All name Restaurants have underscore
...
并将其替换为:>
?
我找到了我必须找到的答案:id="([a-z_ A-Z]*)" type="checkbox">