Replace all: Difference between revisions
Jump to navigation
Jump to search
imported>Bale Created page with '{{ #vardefine:name|replace_all}}{{ #vardefine:return_type|string}}{{ FunctionPage| name={{#var:name}}| function_category=String Handling Routines| function1={{Function| name={{…' |
imported>Bale mNo edit summary |
||
Line 5: | Line 5: | ||
FunctionPage| | FunctionPage| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
Line 36: | Line 35: | ||
{{SeeAlso|replace_first}}| | {{SeeAlso|replace_first}}| | ||
}} | }} | ||
[[Category:String Handling Routines]] |
Revision as of 05:15, 22 May 2010
Function Syntax
string replace_all(matcher pattern ,string replacement )
- pattern is the regular expression to use
- replacement is used to replace any match of the pattern
This function first resets the matcher pattern. It then scans the input sequence looking for matches of the pattern. Characters that are not part of any match are appended directly to the result string with each match replaced by the replacement string.
Simple Example
For example:
string input = "aabfooaaaabfooabfoob";
matcher test_match = create_matcher("a*b", input);
string result = replace_all(test_match, "-");
print(result);
Will result in the following being printed:
-foo-foo-foo-