68 |
pcrecpp::RE("a*").FullMatch("aaa") matches, while |
pcrecpp::RE("a*").FullMatch("aaa") matches, while |
69 |
pcrecpp::RE("a*?").FullMatch("aaa") does not, and |
pcrecpp::RE("a*?").FullMatch("aaa") does not, and |
70 |
pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. |
pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. |
71 |
|
|
72 |
12. If \p or \P was used in non-UTF-8 mode on a character greater than 127 |
12. If \p or \P was used in non-UTF-8 mode on a character greater than 127 |
73 |
it matched the wrong number of bytes. |
it matched the wrong number of bytes. |
74 |
|
|
75 |
|
|
76 |
Version 7.1 24-Apr-07 |
Version 7.1 24-Apr-07 |