CAPL Functions » General » Function Overview » str_replace_regex
str_replace_regex
Valid for: CANoe DE • CANoe:lite DE • CANoe4SW DE • CANoe4SW:lite DEFunction Syntax
Description
Replaces all occurrences of pattern in a string with another string.Parameters
- s: String to be modified.
- pattern: Regular expression which determines the parts in s which shall be replaced. For the regular expression, the same syntax is used as in the Perl programming language.
- replacement: Replacement for the parts which match the pattern.
Return Values
1 if successful, 0 if the resulting string would be too long for the buffer s.Example
Example 1
Note
Some symbols have special meaning in regular expressions and need escaping with backslash to be matched verbatim. These symbols are., [, {, }, (, ), \, *, +, ?, |, ^, and $. The symbol ] also needs escaping if it is preceded by a [ symbol. As regular string literals also use backslash for escaping, there need to be two backslashes to escape a symbol inside a regular expression.
Other symbols can obtain special meaning in regular expressions, if they are escaped with backslash. An example for this would be the character class d which can be used to match digits.