var s = "用户登录:abc123中文 [";
取上面字符串里面的“abc123中文”,前面和都是固定的,要取的部分是动态变化的
var s = "用户登录:abc123中文 ["; Match m = Regex.Match(s, @"^用户登录:(.*)\[$"); Console.WriteLine(m.Groups[1].Value);
string s = "用户登录:abc123中文 [sss";
var reg = /用户登录:\b(\w+)\b/g;
string result = s.match(reg)[1];