您好我尝试在c#
的富文本框中选择一段文字例如:
富文本框中的文字是“Hello my friends !!”
我想从“我的”到最后选择文本 像这样:
string myText="my friends !! ";
如何??
答案 0 :(得分:3)
SelectionStart和SelectionLength是此处所需的属性
并且可以使用string.IndexOf
int pos = richTextBox.Text.IndexOf("my");
if(pos != -1)
{
richTextBox.SelectionStart = pos;
richTextBox.SelectionLength = richTextBox.Text.Length - pos;
richTextBox.Focus();
}
将所选文本返回到您编写的字符串var中:
string myText = richTextBox.SelectedText;
答案 1 :(得分:0)
通过SendKeys
执行此操作的另一种方法int linePosition = richTextBox1.Text.IndexOf("my");
richTextBox1.SelectionStart = linePosition;
richTextBox1.Focus();
SendKeys.Send("{HOME}+{END}");
SendKeys.Flush();