Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changes between Version 2 and Version 3 of TextReplaceExample

Show
Ignore:
Author:
kris (IP: 67.127.59.171)
Timestamp:
04/17/07 08:05:42 (17 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TextReplaceExample

    v2 v3  
    1515 
    1616        // replace "eat" with "chew" 
     17        char[] replaced = Text.substitute (source, "eat", "chew"); 
     18        Cout(replaced).newline; 
     19 
     20        // incrementally replace "eat" with "chew", sans heap activity 
    1721        foreach (element; Text.patterns (source, "eat", "chew")) 
    1822                 Cout(element);