码迷,mamicode.com
首页 > 系统相关 > 详细

vim 字符串出现次数统计(词频)

时间:2015-01-16 19:19:23      阅读:457      评论:0      收藏:0      [点我收藏+]

标签:vim   词频   统计   

命令

:%s/pattern//gn

参数说明

% - 操作区间,全文本;可以使用1, $或行区间替代

s - substitute

pattern - 查询字符串

// - 无替代文本。如果偏好,中间可以加任意字符!建议添加‘~’,重复上次查询

g - Replace all occurrences in the line.  Without this argument,  replacement occurs only for the first occurrence in each line.因此,如果不用此标志,就变成统计出现pattern的行数。

n - Report the number of matches, do not actually substitute.这是核心标志,也是达到目的的标志。同时也说明了为什么‘//‘之间可以添加任意字符!

用途

单个pattern词频统计

替代方案

脚本或高级语言解析文件


vim 字符串出现次数统计(词频)

标签:vim   词频   统计   

原文地址:http://blog.csdn.net/cwcmcw/article/details/42779003

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!