ルールに一致する文字列からのレコードでオブジェクトを埋めたいです。ルールは、右側にスペースがある少なくとも 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 });
私は達成したい:
Q : どのパターンを使用する必要がありますか?