Annotation of embedaddon/php/ext/pcre/pcrelib/testdata/testinput3, revision 1.1.1.1

1.1       misho       1: /-- This set of tests checks local-specific features, using the fr_FR locale. 
                      2:     It is not Perl-compatible. There is different version called wintestinput3
                      3:   f  or use on Windows, where the locale is called "french". --/
                      4: 
                      5: /^[\w]+/
                      6:     *** Failers
                      7:     École
                      8: 
                      9: /^[\w]+/Lfr_FR
                     10:     École
                     11: 
                     12: /^[\w]+/
                     13:     *** Failers
                     14:     École
                     15: 
                     16: /^[\W]+/
                     17:     École
                     18: 
                     19: /^[\W]+/Lfr_FR
                     20:     *** Failers
                     21:     École
                     22: 
                     23: /[\b]/
                     24:     \b
                     25:     *** Failers
                     26:     a
                     27: 
                     28: /[\b]/Lfr_FR
                     29:     \b
                     30:     *** Failers
                     31:     a
                     32: 
                     33: /^\w+/
                     34:     *** Failers
                     35:     École
                     36: 
                     37: /^\w+/Lfr_FR
                     38:     École
                     39: 
                     40: /(.+)\b(.+)/
                     41:     École
                     42: 
                     43: /(.+)\b(.+)/Lfr_FR
                     44:     *** Failers
                     45:     École
                     46: 
                     47: /École/i
                     48:     École
                     49:     *** Failers
                     50:     école
                     51: 
                     52: /École/iLfr_FR
                     53:     École
                     54:     école
                     55: 
                     56: /\w/IS
                     57: 
                     58: /\w/ISLfr_FR
                     59: 
                     60: /^[\xc8-\xc9]/iLfr_FR
                     61:     École
                     62:     école
                     63: 
                     64: /^[\xc8-\xc9]/Lfr_FR
                     65:     École
                     66:     *** Failers 
                     67:     école
                     68: 
                     69: /\W+/Lfr_FR
                     70:     >>>\xaa<<<
                     71:     >>>\xba<<< 
                     72: 
                     73: /[\W]+/Lfr_FR
                     74:     >>>\xaa<<<
                     75:     >>>\xba<<< 
                     76: 
                     77: /[^[:alpha:]]+/Lfr_FR
                     78:     >>>\xaa<<<
                     79:     >>>\xba<<< 
                     80: 
                     81: /\w+/Lfr_FR
                     82:     >>>\xaa<<<
                     83:     >>>\xba<<< 
                     84: 
                     85: /[\w]+/Lfr_FR
                     86:     >>>\xaa<<<
                     87:     >>>\xba<<< 
                     88: 
                     89: /[[:alpha:]]+/Lfr_FR
                     90:     >>>\xaa<<<
                     91:     >>>\xba<<< 
                     92:     
                     93: /[[:alpha:]][[:lower:]][[:upper:]]/DZLfr_FR 
                     94: 
                     95: /-- End of testinput3 --/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>