diff options
author | Urban Müller | 2011-11-04 16:41:21 +0000 |
---|---|---|
committer | Urban Müller | 2011-11-04 16:41:21 +0000 |
commit | e3dfb20dc72ec8699293f1d46d6caf5d9332423e (patch) | |
tree | 3959cfd02f50d74b4d3d7519de1b862cbe428b12 /tests | |
parent | 33df3708f889744a3cabb36a77a16a3077a49a32 (diff) | |
download | itools-e3dfb20dc72ec8699293f1d46d6caf5d9332423e.tar.gz itools-e3dfb20dc72ec8699293f1d46d6caf5d9332423e.tar.bz2 itools-e3dfb20dc72ec8699293f1d46d6caf5d9332423e.zip |
test \b
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it.t | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -79,6 +79,11 @@ match( ' |#', 'don\'t include umlaute in \W' ); +match( + '\ba', 'äa', + '', + '\b must know umlauts' + ); eval( '$escapedwordregex = "' . it::convertregex( '\w' ) . '";' ); $escapedwordregex = preg_replace( '|[\\\\/]|', '', $escapedwordregex ); |