It would be nice to have a generic `replace()` method: ```php $s = $s->replace('foo', 'bar'); ``` Expected signature: ```php function replace(string $search, string $replace, int $limit = -1); ```