首先有个字符串变量: string s=" name like @Name or Nickname like @NickName and Ctime<@mindate and ETime=@maxdate"
求正则表达式匹配的结果为所有的带@符号的字符串
匹配结果: @Name @NickName @mindate @maxdate
收起
@\w+ 并设置全局匹配
@\w+
报告相同问题?