检测 VB.NET 中的文本封装
在我的程序中,我需要进行各种单词替换,但我不想替换封装的单词。这是一个例子:
这是一个例子。这是{示例的定义}:一小部分 或旨在显示整体情况的数量。例子很好。
我希望把它变成这样:
这是一个替换词。这是{示例的定义}:一小部分 或旨在显示整体情况的数量。替换词很棒。
抱歉,除了我当前的代码进行替换之外,我还没有任何代码可以显示进度,这对解决这个问题没有帮助。
谢谢! 菲尔
In my program I need to make various word replacements but I don't want to replace the word if it's encapsulated. Here's an example:
This is an example. Here is the {definition of example}: A small part
or quantity intended to show what the whole is like. Examples are great.
I would like it to turn that into this:
This is an replacement words. Here is the {definition of example}: A small part
or quantity intended to show what the whole is like. replacement words are great.
Sorry, I don't have any code to show progress yet aside from my current code to make replacements and that won't help with this problem.
Thanks!
Phil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现此目的的一种方法是使用正则表达式。
Expresso 是实验和学习正则表达式的一个很好的工具(它提供了输入正则表达式的详细解释) 。
30 分钟正则表达式教程
在 Microsoft .NET Framework 中使用正则表达式
正则表达式 - 简介
正则表达式类< /p>
One way to accomplish this is using Regular Expressions.
A great tool for experimenting with and learning Regular Expressions is Expresso (it provides detailed explanations of entered Regex's).
The 30 Minute Regex Tutorial
Using Regular Expressions with The Microsoft .NET Framework
Regular expressions - An introduction
Regex Class