SELECT * FROM log27test/27test where deviceType="2129" and ((eventType="WinApplication" and TargetAddress="192.168.0.66"))
本人想配置出这条SQL中的全部 ‘=’前面的字符串,例如deviceType、eventType、TargetAddress 等,有可能还会更多
解决方案
15
[a-z,A-Z,_,0-9,]+\s*=
共找到 3 处匹配:
deviceType=
eventType=
TargetAddress=
大致就是匹配规则,以a-z,A-Z或下划线和数字开始的标识符,加上0或多个空格,加上等号,就是匹配。
25
@"\w+(?==)"