我想用匹配规则的字符串中的记录填充对象。规则是,如果它至少包含 3 个点,右边有一个空格(". . . "
),那么我提取左边的第一个文本,我刚刚选择的文本及其长度。
string strdata = "Nume. . . . . . .Data nasterii. . . . .Nr. . . .";
Regex rgx = new Regex(". . . ");//At least 3 dots ". . . "
foreach (Match match in rgx.Matches(strdata))
lst.Add(new obj1{ Label = "?", Value = match.Groups[1].Value, Length = match.Groups[1].Length });
我想达到:
问:我必须使用什么模式?