|
1 mês atrás | |
---|---|---|
common | 2 anos atrás | |
example_configs | 1 mês atrás | |
src | 6 meses atrás | |
t | 1 ano atrás | |
tiffs_should_fail | 9 meses atrás | |
tiffs_should_pass | 6 meses atrás | |
.gitignore | 3 anos atrás | |
BUGS | 3 anos atrás | |
FAQ | 6 meses atrás | |
LICENSE | 1 ano atrás | |
README.1st_checkit | 6 meses atrás | |
README.TIFFrisks | 2 anos atrás | |
README.TIFFspecification | 2 anos atrás | |
README.compile | 8 meses atrás | |
README.grammar | 2 anos atrás | |
README.icc | 3 anos atrás | |
README.regex | 2 anos atrás | |
TODO | 3 anos atrás | |
grammar.xhtml | 2 anos atrás |
= RegEx =
the program uses the pcre-library for regular expressions in ascii matching
rules (in config file).
If you use a regex similar to "^[:print:]*$" it does not match on
* all strings containing characters outside of printable ascii range (see 'man
pcre2pattern' for details)
* an empty string "" will not matched, because we defined PCRE_NOTEMPTY.
An empty string is not a valid match, this behaviour is a design choice.
* Unicode is not set, because TIFF specification is in general ASCII based
(PCRE_UTF8 not set)