Difference between revisions of "Regular expressions"

From D Wiki
Jump to: navigation, search
m (improve wording)
m
Line 5: Line 5:
 
* [http://www.regular-expressions.info/ Introduction to regular expressions]
 
* [http://www.regular-expressions.info/ Introduction to regular expressions]
 
* [http://dlang.org/phobos/std_regex.html Phobos std.regex documentation]
 
* [http://dlang.org/phobos/std_regex.html Phobos std.regex documentation]
 +
 +
[[Category:HowTo]]

Revision as of 10:13, 14 November 2014

Regular expressions are a powerful way of specifying text-matching patterns in a concise way. They are very useful in text-processing applications, so D provides a regular expression library std.regex in its standard library Phobos.

See also