我想解析 html 内容并将内容从 A 保留到 B 例如:
some content1...
<!-- begin_here -->
some content2
<!-- end_here -->
some content3
会变成
<!-- begin_here -->
some content2
<!-- end_here -->
现在,我用 sed 来做:
sed '/begin_here/,/end_here/!d' file.html > file2.html
但是,我想使用 python 重写它以实现跨平台目的。我对python中的正则表达式不是很熟悉。能给我一些提示吗?非常感谢 :)