其他分享
首页 > 其他分享> > 学会用正则表达式

学会用正则表达式

作者:互联网

在代码工程里头,进行批量的文本替换,能用正则尽量用正则表达式,减少人力成本

Assertion.AssertEquals(false, ImageProcessor.CompareImage(bitmap1, bitmap2));   不如就用着这正则表达式替换 Assertion\.AssertEquals\( (true|false), ImageProcessor\.CompareImage\( bitmap(\d), bitmap(\d)\) \);   替换的目标就是这个了: MyTest.V50.AssertionImageHelper.AssertEquals($1, bitmap$2, bitmap$3);

标签:false,正则表达式,AssertEquals,学会,Assertion,bitmap,CompareImage
来源: https://www.cnblogs.com/chenyingzuo/p/16440486.html