0

記号でノードのテキストを選択し<>、その色を変更したい...

MatchCollection begin = Regex.Matches(richXmlBox.Text, @"\<\b.*\>\b");

if (begin != null && begin.Count > 0)
{
    foreach (Match m in begin)
    {
        richXmlBox.Select(m.Index, m.Length);
        richXmlBox.SelectionColor = Color.Crimson;
    }
}

これは例えばこれのために働くsdfsdf<something>asd

しかし、これでは機能しません<something><something>

4

0 に答える 0