使用 vim 删除 HTML 标签
如何轻松删除 HTML 标签包围的文本块?
假设我遇到了一个被
标签包围的文本块。如何轻松地一次性删除标签内的所有内容以及标签本身?How can I easily delete blocks of text surrounded by HTML tags?
Say I come across a block of text that is surrounded by <div>
tags. How can I easily delete everything within the tags, and the tags themselves, all at once?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文本对象是你的朋友...
dat
:“删除标记周围”dit
:“删除标记内部”还有类似的更改文本的操作(
cat
和cit
)并直观地选择它(vat
和vit
)。玩得开心!
Text objects are your friends...
dat
: "delete around tag"dit
: "delete inside tag"There are also similar operations for changing the text (
cat
andcit
) and selecting it visually (vat
andvit
).Have fun!
例如,在
中,您可以执行
dat
When in the
<div>
, say, you can dodat