探している形式で XML ファイルを保存する際に問題があります。誰かが私を助けてくれるかもしれません。ここに私のコードがあります。
string testInput= @"<!LinkName>MyChildData<#";
var testRegex = new Regex(@"(?<name>(?<=<!).*?(?=>))|(?<namex>(?<=>).*?(?=<#))",
RegexOptions.Multiline | RegexOptions.Singleline);
foreach (Match myMatch in testRegex.Matches(testInput))
{
xml.NewChild2(myMatch.Groups["name"].Value, myMatch.Groups["namex"].Value);
}
xml.SaveXml("simple.xml");
私が期待している結果は
<rootNode>
<LinkName>MyChildData</LinkName>
</rootNode>
しかし、私が得る結果は
<rootNode>
<LinkName/>
<nothing>MyChildData</nothing>
</rootNode>
アドバイスをいただければ幸いです ありがとう