gpt4 book ai didi

c# - 在 richtextbox 中突出显示 '#' 直到行结束

转载 作者:太空宇宙 更新时间:2023-11-03 19:26:54 27 4
gpt4 key购买 nike

我的 RIchTextBox 中有以下文本:

foo:baa#done baa
a:b#pending ee

我想突出显示 # 之后和 ""(espace)

之前的所有内容

我该怎么做?我尝试将 end 作为 \t"" 的 IndexOf,但它返回 -1。

我的代码(没有按预期工作):

        string[] lines = list.Lines;
string line;

for (int i = 0, max = lines.Length; i < max; i++)
{
line = lines[i];
int start = list.Find("#");
int end = ??? // I tried list.Find("\t") and list.Find(" ")
if (-1 != start || -1 != end)
{
list.Select(start, end);
list.SelectionColor = color;
}
}

list 是一个 RichTextBox

最佳答案

使用 GetLineFromCharIndex() 获取 Find() 方法返回值的行号。然后 GetFirstCharIndexFromLine(line + 1) 知道下一行从哪里开始。这将为您提供突出显示文本所需的 SelectionStart 和 SelectionLength 值。

关于c# - 在 richtextbox 中突出显示 '#' 直到行结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7961446/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com