OpenFPGA/vpr7_x2p/libpcre
tangxifan f5b6ee6adf update travis configuration and clean up repository 2019-06-07 22:19:11 -06:00
..
SRC update Makefile t 2019-05-03 11:48:41 -06:00
build update Makefile t 2019-05-03 11:48:41 -06:00
CMakeLists.txt Add latest abc and update ace dependence 2019-05-03 18:56:03 -06:00
pcre.vcxproj update Makefile t 2019-05-03 11:48:41 -06:00
pcre.vcxproj.filters update Makefile t 2019-05-03 11:48:41 -06:00
readme.txt update Makefile t 2019-05-03 11:48:41 -06:00

readme.txt

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PERL-Compatible Regular Expresion Library (PCRE) is an open source project that provides a regular expression library for C/C++ programs.
The regular expression it implements follows PERL syntax/semantics.

The library is written by: Philip Hazel <ph10@cam.ac.uk> from the University of Cambridge

I (Jason Luu) have modified the pcre library so that it fits into our VTR environment.

To build the static library (libpcre.a), enter "make".

To test if the library works after you build it, enter:
	pcredemo "[aA]b.*c" "My Abacus"

This should return "Match succeeded at offset 3"