在 Richtextbox C# 中填充两个单词之间的内容
我对VS很陌生。还有c#。这里我有 Richtextbox。我想过滤两个单词之间的内容。
这是进行处理的示例方法。此文本位于我的 Richtextbox
上,
我想在单词 example
和单词 text
之间填充内容。 答案是进行处理的方式。 。
请帮助我使用 c# 来完成此操作
I am very new to VS. And c#. Here I have Richtextbox. I want to filter it content which in between two words.
This is the example way to do my processing. This text is on my Richtextbox
I want to populate content in between word example
and word text
.
Answer is way to do my processing. This
Please help me doing this using c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 RegEx,或者假设
text
是您的 Richtextbox 文本,以下代码:You could use RegEx or, assuming
text
is your richtextbox text, this code:你可以这样做:
You can do like this:
我认为问题是从 RichTextBox 中获取文本,尝试:
然后...
(参见其他答案)
I think the problem is to get the text out of the RichTextBox, try:
and then...
(see other answers)