87,997
社区成员




Regex _regFind = new Regex("<div onmouseover=\"foot\\('(.+?)'\\);pl_show\\('(.+?)',this\\)\".+?>", RegexOptions.Multiline);
string _strSource = "<div onmouseover=\"foot('第一个');pl_show('这里的内容是任意的,可能是数字,或者中文或者英文',this)\" onmouseout=\"pl_hide()\" style=\"float: left; cursor: default\">";
Match m = _regFind.Match(_strSource);
string find_foot = m.Groups[1].Value;//返回了“第一个”
string find_pl_show = m.Groups[2].Value;//返回了“这里的内容是任意的,可能是数字,或者中文或者英文”