2

次の文字列があるとしましょう

Type="Category" Position="Top" Child="3" ABC="XYZ"....

そして2つの正規表現グループ:キーと値

Key: "Type", "Position", "Child",...
Value: "Category", "Top", "3",...

これらの2つのキャプチャされたグループをHashtableのようなキー/値ペアオブジェクトにどのように組み合わせることができますか?

Dictionary["Type"] = "Category";
Dictionary["Position"] = "Top";
Dictionary["Child"] = "3";
...
4

1 に答える 1

1

私のおすすめ:

System.Collections.Generic.Dictionary<string, string> hashTable = new System.Collections.Generic.Dictionary<string, string>();

string myString = "Type=\"Category\" Position=\"Top\" Child=\"3\"";
string pattern = @"([A-Za-z0-9]+)(\s*)(=)(\s*)("")([^""]*)("")";

System.Text.RegularExpressions.MatchCollection matches = System.Text.RegularExpressions.Regex.Matches(myString, pattern);
foreach (System.Text.RegularExpressions.Match m in matches)
{
    string key = m.Groups[1].Value;    // ([A-Za-z0-9]+)
    string value = m.Groups[6].Value;    // ([^""]*)

    hashTable[key] = value;
}
于 2010-12-25T08:00:31.083 に答える