问题 vim 中不能使用 .*?。 解法 可使用 .\{-},代替 .*,实现非贪婪匹配。 详细说明 输入 :help non-greedy,可以看到如下帮助文档: non-greedy If a "-" appears immediately after the "{", then a shortest match first algorithm is used (see example bel
心得 python 使用正则表达式进行文本匹配,参考 python字符串匹配和搜索 正则表达式语法 正则表达式在线测试 使用 collections.Counter 统计频率 使用 lambda 函数排序 文本(zen_of_python.txt)内容为: The Zen of Python, by Tim Peters Beautiful is better than ugly.