Last update January 22, 2007

Doc Comments /
Regular Expression



Difference (last change) (Author, normal page display)

Changed: 1c1
=Regular Expressions=
=<n>Regular Expressions</n>=

Deleted: 4,14d3
== Correction ==

Current text:
if (m; std.regexp.search("abcdef", "c"))
writefln("%s[%s]%s", m.pre, m.match(0), m.post); // writes ab[c]def
Should be:
if (auto m = std.regexp.search("abcdef", "c"))
writefln("%s[%s]%s", m.pre, m.match(0), m.post); // writes ab[c]def

(Source: Posting:digitalmars.D.bugs/8408)


Deleted: 22d10


Changed: 24c12,13
*See the corresponding page in the D Specification: DigitalMars:d/regular-expression.html

Corresponding page in the D Specification

Regular Expressions

Comments

Add your comments here...

Links

Corresponding page in the D Specification

FrontPage | News | TestPage | MessageBoard | Search | Contributors | Folders | Index | Help | Preferences | Edit

Edit text of this page (date of last change: January 22, 2007 17:15 (diff))