Replace first: Difference between revisions
Jump to navigation
Jump to search
imported>Bale mNo edit summary |
imported>Heeheehee m Minor fix to code sample. |
||
Line 26: | Line 26: | ||
string input = "zzzdogzzzdogzzz"; | string input = "zzzdogzzzdogzzz"; | ||
matcher test_match = create_matcher("dog", input); | matcher test_match = create_matcher("dog", input); | ||
string result = | string result = replace_first(test_match, "cat"); | ||
print(result); | print(result); | ||
</syntaxhighlight>| | </syntaxhighlight>| |
Latest revision as of 20:34, 5 August 2010
Function Syntax
string replace_first(matcher pattern ,string replacement )
- pattern is the regular expression to use
- replacement is used to replace a match of the pattern
This function first resets the matcher pattern. It then scans the input sequence looking a match of the pattern. Characters that are not part of any match are appended directly to the result string with the first match replaced by the replacement string.
Simple Example
For example:
string input = "zzzdogzzzdogzzz";
matcher test_match = create_matcher("dog", input);
string result = replace_first(test_match, "cat");
print(result);
Will result in the following being printed:
zzzcatzzzdogzzz