62,243
社区成员




string s = "[a]=@b [c]=@d 'dafd [c]=@d dafdaf'";
string r = Regex.Match(s, @"(?<!^')(\[\w+\]=@\w+(?!') *)+").Value;
Response.Write(r);
string s = "[a]=@b '[c]=@d'";
string r = Regex.Match(s, @"(?<!^')\[\w+\]=@\w+(?!')").Value;
Response.Write(r);