不支持:
            string strA = "abc";
            Regex re = new Regex(@"\w++");
            re.Match(strA);支持:
            string strA = "abc";
            Regex re = new Regex(@"(?>\w+)");
            re.Match(strA);特此通知!