我使用此语法在Notepad ++手写文本文件中查找错误
UPDATE dbo.[tbl_license_group]
SET Quantity = CASE
WHEN $decision = 'add' THEN Quantity + '$Quantity'
WHEN $decision = 'subtract' THEN Quantity - '$Quantity'
END
WHERE License_Group_ID = '$LicenseGroupID'
基本表格为;\d+\;\d+\.\d+;\W\d+\.\d+
例如:
(names with and without numbers);id;d(2).d(6);-d(2).d(6)
正确
name;1;11.222222;-11.222222
不正确
name;111.222222;-11.222222
不正确
搜索其中200行以查找一个错误效率非常低。但是,如何仅突出显示这些文件中的错误?
我尝试使用name;;11.222222;-11.222222
,但它只匹配每个字符和空格。我也不确定如何忽略起始名称,因为它可以是带或不带数字的名称,我试图帮助自己Rexegg Cheatsheet。