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: |
Deleted: 22d10
|
|
Changed: 24c12,13
|
*See the corresponding page in the D Specification: |
|
|
Regular Expressions
Comments
Add your comments here...
Links
Corresponding page in the D Specification