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.
我需要选择一个代码块,以便可以使用 TextSoap 将其删除。
如何选择从开头的“<!DOCTYPE”到第一个“<h1>”的所有内容?
谢谢。
一般的正则表达式可能看起来像'^<!DOCTYPE(.|\n)*?<h1>'评论者说的正确,你使用的是什么语言?语言可能有不同的方式来处理正则表达式。你也可以试试这个:http ://regexpal.com/
'^<!DOCTYPE(.|\n)*?<h1>'