``search`` | required, string | Pattern (regular expression) that will be replaced by ``replace``.
Example to remove a "copy" suffix: "-copy[0-9]*$"
| | |
``replace`` | required, string | This string replace all matches from the ``search``.
Up to nine groups can be addressed with $1, ..., $9 | | |