This is the source code for the C++ class library pcre++.
pcre++ is a wrapper class around the pcre library (Perl
Compatible Regular Expressions), which is available on
http://www.pcre.org/.
Compile and install it using the following commands:
% ./configure
% make
% su
# make install
# ^D
%
If you are having problems compiling pcre++, try suppliying
some flags to the configure script, for examp
more»
libpcre++ for Debian
-----------------
About build, I'm not sure how libtool works with C++. I needed to add
-lstdc++ for the build (specifically libpcre___la_LIBADD = -lstdc++ in
Makefile.am), but I think that we will be able to remove this change
in future.
-- NIIBE Yutaka <gniibe@fsij.org>, Wed, 31 Jan 2007 20:38:15 +0900
0.9.2:
in fact, Array and ArrayIterator have been removed now.
pcre++ has now its own namespace: pcrepp.
0.9.1:
typedef std::vector<std::string> Array;
typedef std::vector<std::string>::iterator ArrayIterator;
those two typedefs will be removed in version 0.9.3.
please use std::vector<std::string> and std::vector<std::string>::iterator
instead or define the typedef in your own sources
more»