Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 RSS 提要,我正在寻找合适的正则表达式来匹配<item>...</item>标签之间的所有内容。然后,我将能够解析出我正在寻找的数据。
<item>...</item>
你没有指定你正在使用什么语言,但是使用这个正则表达式
<item>(.+?)<\/item>
第一个匹配组将包含 <item> 标记之间的所有内容。那就是如果它们没有嵌套。如果它们是,并且您想要获取所有实例 - 内部实例、外部实例(包括内部实例)等,那么您将需要使用解析器,因为这超出了正则表达式的能力。