Difference between revisions of "Regular expressions"

From D Wiki
Jump to: navigation, search
(stub)
 
(See also -> External links)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Regular expressions are a powerful way of specifying a text-matching pattern in a concise way. They are very useful in text-processing applications, so D provides a regular expression library [http://dlang.org/phobos/std_regex.html std.regex] in its standard library [[Phobos]].
+
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 [http://dlang.org/phobos/std_regex.html std.regex] in its standard library [[Phobos]].
  
==See also==
+
==External links==
  
 
* [http://www.regular-expressions.info/ Introduction to regular expressions]
 
* [http://www.regular-expressions.info/ Introduction to regular expressions]
 +
* [https://dlang.org/regular-expression.html Regular Expressions - (by Dmitry Olshansky, the author of std.regex)]
 
* [http://dlang.org/phobos/std_regex.html Phobos std.regex documentation]
 
* [http://dlang.org/phobos/std_regex.html Phobos std.regex documentation]
 +
 +
[[Category:HowTo]]

Latest revision as of 20:54, 6 January 2018

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.

External links