TextRange 查找字符串 C#

发布于 2024-11-18 13:36:19 字数 344 浏览 9 评论 0原文

我正在寻找一个函数,该函数将使我能够在 textRange 中找到某个字符串并返回它的 textPointers(开始和结束) 最好的方法是什么或者有任何 textRange 方法可以帮助我吗? 谢谢。

当我的 textRange 中有相同的单词并且我试图获取 textRange 中每个单词的 Textpointer 时,我的方法会出现问题。
例如,我在 textRange 中的文本是
“hello hello hello”
我想获取 textRange 中每个单词的文本指针,它将混合第二个和最后一个单词并给我(单词的第一个索引)或最后一个取决于我使用的方法。

Im looking for a function that will enable me to find a certain string in a textRange and gives me back its textPointers(beginning and end)
whats the best approach or is there any textRange method that can help me ?
Thanks.

I have a problem in my approach which happens when i have same words in my textRange and im trying to get the Textpointer for each word in the textRange.

For example my text in the textRange is
"hello hello hello"
and i want to get the text pointer for each word in the textRange, it will mix the second and last word and give me (the first indexOf the word) or last depends on which method i use.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人九事 2024-11-25 13:36:19

像这样的东西

string txt = tr.Text; //tr is your TextRange
string find = "a str";
int beginPtr = txt.IndexOf(find);
int endPrt = beginPtr + find.Length;

Something like this

string txt = tr.Text; //tr is your TextRange
string find = "a str";
int beginPtr = txt.IndexOf(find);
int endPrt = beginPtr + find.Length;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文