Blogger Information
Blog 91
fans 0
comment 0
visits 203637
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
linux安装pcre
何澤小生的博客
Original
1788 people have browsed it

PCRE(Perl Compatible Regular Expressions 中文含义:perl语言兼容正则表达式)是一个用C语言编写的正则表达式函数库,由菲利普.海泽(Philip Hazel)编写。PCRE是一个轻量级的函数库,比Boost之类的正则表达式库小得多。PCRE十分易用,同时功能也很强大,性能超过了POSIX正则表达式库和一些经典的正则表达式库

PCRE被广泛使用在许多开源软件之中,最著名的莫过于Apache HTTP服务器PHP脚本语言、R脚本语言,此外,正如从其名字所能看到的,PCRE也是perl语言的缺省正则库。

PCRE是用C语言实现的,其C++实现版本是PCRE++。


1.获取pcre:
最新版本为8.40

wget    https://netix.dl.sourceforge.net/project/pcre/pcre/8.40/pcre-8.40.tar.gz

2.解压

tar -zxvf   pcre-8.40.tar.gz

3.编译:
进入pcre-8.40目录

make

4.安装:

make install

5.安装pcre报c++编译器错误
gcc已经安装了但是还报c++编译器不支持的错误。
于是找到如下组件安装:

yum install gcc-c++

再次安装pcre成功。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post