Top "Pcre" questions

Perl Compatible Regular Expressions(PCRE) was initially developed as a regex engine for PERL, but grew into a library that many other languages (like PHP and Apache) use for their regex.

How do I match accented characters with PHP preg?

I’d like to give my users the option to not only fill in letters and numbers, but also “special” …

php regex pcre
How can I get only named captures from preg_match?

Possible Duplicate: how to force preg_match preg_match_all to return only named parts of regex expression I have …

php regex preg-match pcre
preg_match_all into simple array

I have preg_match_all function: preg_match_all('#<h2>(.*?)</h2>#is', $source, $output, PREG_…

php arrays multidimensional-array preg-match-all pcre
How do I get PCRE to work with C++?

This is a newbie question but I hope I can express my question as clearly as possible. I'm trying to …

c++ pcre
Python Regex Negative Lookbehind

The pattern (?<!(asp|php|jsp))\?.* works in PCRE, but it doesn't work in Python. So what can I do …

python regex pcre negative-lookbehind
How to Install PCRE Development Headers on Mac OSX

I just upgraded my MacBook Pro to Mavericks and my local Ruby on Rails development environment isn't running straight off …

ruby-on-rails macos passenger pcre ruby-on-rails-2
Matching Unicode letter characters in PCRE/PHP

I'm trying to write a reasonably permissive validator for names in PHP, and my first attempt consists of the following …

php regex unicode pcre character-properties
Efficiently querying one string against multiple regexes

Lets say that I have 10,000 regexes and one string and I want to find out if the string matches any …

regex algorithm pcre
phpinfo is reporting incorrect pcre version

I've spent the day trying to figure out a strange problem. I have a WordPress site that is running into …

php apache command-line pcre
replace a part of a string with REGEXP in sqlite3

I installed REGEX support with apt-get install sqlite3 sqlite3-pcre now I can use REGEX in my queries on the …

regex sqlite pcre