正则表达式 – Git – 不包括{}

前端之家收集整理的这篇文章主要介绍了正则表达式 – Git – 不包括{}前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用git与–color-words来查看我的差异.在我的差异中,它显示删除
<b>{{ljcount}}</b>&nbsp;&nbsp;&nbsp;Changes

而且我补充说:

<b>{{skills_limits}}</b>&nbsp;&nbsp;&nbsp;Changes

这比我想要的要大(我想要的边界在{}).我试着用–word-diff-regex来玩,但是找不到正则表达式来使它工作.如何达到这个结果?

从git帮助差异:
--word-diff-regex=<regex>
       Use <regex> to decide what a word is,instead of considering runs of non-whitespace to be a word. Also implies
       --word-diff unless it was already enabled.

以下表达式将使单词成为任何字符串和下划线,或任何非空格字符.

$git diff --color-words --word-diff-regex='\\w+|[^[:space:]]'
原文链接:https://www.f2er.com/regex/356609.html

猜你在找的正则表达式相关文章