使用正则表达式和标签提取部分文本
所以我有一个带有特殊标签的文本文件,例如:
{A1}
Text 1
{A1}
{A2}
Text 2
{A2}
如何使用 reg-ex 从文本中提取 Text 2
或 Text 1
.. 部分? 所以我要能够只提取标签 A1 之间的内容或仅提取标签 A2 之间的内容..不是全部...一次! 谢谢!
So I have a text file that is having special tags like:
{A1}
Text 1
{A1}
{A2}
Text 2
{A2}
How can I extract from the text using reg-ex the portion Text 2
or Text 1
..?
So I what to be able to extract only what is between tags A1 or only what is between Tags A2 .. not all of them ... at once!
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C# 中,您可以执行以下操作:
不支持嵌套标签。
In C# you can do something like this:
Nested tags are not suppoerted.
如果您假设文档格式良好并且标签未嵌套,则可以使用以下正则表达式来执行此操作:
示例:
输出:
You can do it with the following regular expression if you assume that the document is well-formed and that your tags are not nested:
Example:
Output: