grep 正则问题 this version of PCRE is compiled without UTF support

Posted 翔云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grep 正则问题 this version of PCRE is compiled without UTF support相关的知识,希望对你有一定的参考价值。

问题

在使用grep -P,出现如下报错:

grep: this version of PCRE is compiled without UTF support

原因

有些系统支持的正则规范不同。

解决办法

使用egrep或grep –E 代替。

正则表达式分类

  • 基本正则表达式:BRE

    grep ,egrep –G

  • 扩展正则表达式:ERE

    grep -E, egrep

扩展正则表达式extended regular expression比基本正则表达式basic regular expression的表达更规范。

参考

https://www.cnblogs.com/python-gm/p/6940756.html

以上是关于grep 正则问题 this version of PCRE is compiled without UTF support的主要内容,如果未能解决你的问题,请参考以下文章

grep命令与正则表达式(过滤)三

linux正则表达式,(以grep为例)

grep正则表达式

正则表达式解析 & awk/sed/grep实用实例总结文档

grep命令及正则

shell脚本正则表达式三剑客之一(grep,egrep)