216 |
The /S option causes pcre_study() to be called after the expression has been |
The /S option causes pcre_study() to be called after the expression has been |
217 |
compiled, and the results used when the expression is matched. |
compiled, and the results used when the expression is matched. |
218 |
|
|
219 |
|
The /M option causes information about the size of memory block used to hold |
220 |
|
the compile pattern to be output. |
221 |
|
|
222 |
Finally, the /P option causes pcretest to call PCRE via the POSIX wrapper API |
Finally, the /P option causes pcretest to call PCRE via the POSIX wrapper API |
223 |
rather than its native API. When this is done, all other options except /i and |
rather than its native API. When this is done, all other options except /i and |
224 |
/m are ignored. REG_ICASE is set if /i is present, and REG_NEWLINE is set if /m |
/m are ignored. REG_ICASE is set if /i is present, and REG_NEWLINE is set if /m |
294 |
regular expression: information about the compiled pattern is given after |
regular expression: information about the compiled pattern is given after |
295 |
compilation. |
compilation. |
296 |
|
|
297 |
If the option -s is given to pcretest, it outputs the size of each compiled |
If the option -m is given to pcretest, it outputs the size of each compiled |
298 |
pattern after it has been compiled. |
pattern after it has been compiled. It is equivalent to adding /M to each |
299 |
|
regular expression. For compatibility with earlier versions of pcretest, -s is |
300 |
|
a synonym for -m. |
301 |
|
|
302 |
If the -t option is given, each compile, study, and match is run 20000 times |
If the -t option is given, each compile, study, and match is run 20000 times |
303 |
while being timed, and the resulting time per compile or match is output in |
while being timed, and the resulting time per compile or match is output in |