| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
|
|
| 5 |
|
Version 3.0 01-Feb-00 |
| 6 |
|
--------------------- |
| 7 |
|
|
| 8 |
|
1. Add support for the /+ modifier to perltest (to output $` like it does in |
| 9 |
|
pcretest). |
| 10 |
|
|
| 11 |
|
2. Add support for the /g modifier to perltest. |
| 12 |
|
|
| 13 |
|
3. Fix pcretest so that it behaves even more like Perl for /g when the pattern |
| 14 |
|
matches null strings. |
| 15 |
|
|
| 16 |
|
4. Fix perltest so that it doesn't do unwanted things when fed an empty |
| 17 |
|
pattern. Perl treats empty patterns specially - it reuses the most recent |
| 18 |
|
pattern, which is not what we want. Replace // by /(?#)/ in order to avoid this |
| 19 |
|
effect. |
| 20 |
|
|
| 21 |
|
5. The POSIX interface was broken in that it was just handing over the POSIX |
| 22 |
|
captured string vector to pcre_exec(), but (since release 2.00) PCRE has |
| 23 |
|
required a bigger vector, with some working space on the end. This means that |
| 24 |
|
the POSIX wrapper now has to get and free some memory, and copy the results. |
| 25 |
|
|
| 26 |
|
6. Added some simple autoconf support, placing the test data and the |
| 27 |
|
documentation in separate directories, re-organizing some of the |
| 28 |
|
information files, and making it build pcre-config (a GNU standard). Also added |
| 29 |
|
libtool support for building PCRE as a shared library, which is now the |
| 30 |
|
default. |
| 31 |
|
|
| 32 |
|
7. Got rid of the leading zero in the definition of PCRE_MINOR because 08 and |
| 33 |
|
09 are not valid octal constants. Single digits will be used for minor values |
| 34 |
|
less than 10. |
| 35 |
|
|
| 36 |
|
8. Defined REG_EXTENDED and REG_NOSUB as zero in the POSIX header, so that |
| 37 |
|
existing programs that set these in the POSIX interface can use PCRE without |
| 38 |
|
modification. |
| 39 |
|
|
| 40 |
|
9. Added a new function, pcre_fullinfo() with an extensible interface. It can |
| 41 |
|
return all that pcre_info() returns, plus additional data. The pcre_info() |
| 42 |
|
function is retained for compatibility, but is considered to be obsolete. |
| 43 |
|
|
| 44 |
|
10. Added experimental recursion feature (?R) to handle one common case that |
| 45 |
|
Perl 5.6 will be able to do with (?p{...}). |
| 46 |
|
|
| 47 |
|
11. Added support for POSIX character classes like [:alpha:], which Perl is |
| 48 |
|
adopting. |
| 49 |
|
|
| 50 |
|
|
| 51 |
|
Version 2.08 31-Aug-99 |
| 52 |
|
---------------------- |
| 53 |
|
|
| 54 |
|
1. When startoffset was not zero and the pattern began with ".*", PCRE was not |
| 55 |
|
trying to match at the startoffset position, but instead was moving forward to |
| 56 |
|
the next newline as if a previous match had failed. |
| 57 |
|
|
| 58 |
|
2. pcretest was not making use of PCRE_NOTEMPTY when repeating for /g and /G, |
| 59 |
|
and could get into a loop if a null string was matched other than at the start |
| 60 |
|
of the subject. |
| 61 |
|
|
| 62 |
|
3. Added definitions of PCRE_MAJOR and PCRE_MINOR to pcre.h so the version can |
| 63 |
|
be distinguished at compile time, and for completeness also added PCRE_DATE. |
| 64 |
|
|
| 65 |
|
5. Added Paul Sokolovsky's minor changes to make it easy to compile a Win32 DLL |
| 66 |
|
in GnuWin32 environments. |
| 67 |
|
|
| 68 |
|
|
| 69 |
|
Version 2.07 29-Jul-99 |
| 70 |
|
---------------------- |
| 71 |
|
|
| 72 |
|
1. The documentation is now supplied in plain text form and HTML as well as in |
| 73 |
|
the form of man page sources. |
| 74 |
|
|
| 75 |
|
2. C++ compilers don't like assigning (void *) values to other pointer types. |
| 76 |
|
In particular this affects malloc(). Although there is no problem in Standard |
| 77 |
|
C, I've put in casts to keep C++ compilers happy. |
| 78 |
|
|
| 79 |
|
3. Typo on pcretest.c; a cast of (unsigned char *) in the POSIX regexec() call |
| 80 |
|
should be (const char *). |
| 81 |
|
|
| 82 |
|
4. If NOPOSIX is defined, pcretest.c compiles without POSIX support. This may |
| 83 |
|
be useful for non-Unix systems who don't want to bother with the POSIX stuff. |
| 84 |
|
However, I haven't made this a standard facility. The documentation doesn't |
| 85 |
|
mention it, and the Makefile doesn't support it. |
| 86 |
|
|
| 87 |
|
5. The Makefile now contains an "install" target, with editable destinations at |
| 88 |
|
the top of the file. The pcretest program is not installed. |
| 89 |
|
|
| 90 |
|
6. pgrep -V now gives the PCRE version number and date. |
| 91 |
|
|
| 92 |
|
7. Fixed bug: a zero repetition after a literal string (e.g. /abcde{0}/) was |
| 93 |
|
causing the entire string to be ignored, instead of just the last character. |
| 94 |
|
|
| 95 |
|
8. If a pattern like /"([^\\"]+|\\.)*"/ is applied in the normal way to a |
| 96 |
|
non-matching string, it can take a very, very long time, even for strings of |
| 97 |
|
quite modest length, because of the nested recursion. PCRE now does better in |
| 98 |
|
some of these cases. It does this by remembering the last required literal |
| 99 |
|
character in the pattern, and pre-searching the subject to ensure it is present |
| 100 |
|
before running the real match. In other words, it applies a heuristic to detect |
| 101 |
|
some types of certain failure quickly, and in the above example, if presented |
| 102 |
|
with a string that has no trailing " it gives "no match" very quickly. |
| 103 |
|
|
| 104 |
|
9. A new runtime option PCRE_NOTEMPTY causes null string matches to be ignored; |
| 105 |
|
other alternatives are tried instead. |
| 106 |
|
|
| 107 |
|
|
| 108 |
Version 2.06 09-Jun-99 |
Version 2.06 09-Jun-99 |
| 109 |
---------------------- |
---------------------- |
| 110 |
|
|