# HG changeset patch # User František Kučera # Date 1376654942 -7200 # Node ID 94be42998f6aaf37363958e6eac1946cc3bf9e9a # Parent 498421ec3665f5e88e6c7c8a10a8cad5df4f3b1d data: regular expression, PCRE diff -r 498421ec3665 -r 94be42998f6a data/dictionary.xml --- a/data/dictionary.xml Fri Aug 16 13:55:59 2013 +0200 +++ b/data/dictionary.xml Fri Aug 16 14:09:02 2013 +0200 @@ -1394,12 +1394,23 @@ - + + + an expression (sequence of characters) which forms a pattern that can be used for string matching – + finding occurrences of the pattern in the text or evaluating whether the whole text matches the pattern; + Example: regular expression (a|b)cde\d+ matches strings acde123 or bcde0 but not cde1 or acdex + + computer - + + + a C library for regular expressions compatible with Perl's RegEx dialect + or this dialect itself + + computer