Is it possible to replace a substring in a string using formula?
Code:
$str = 'Hello world!'; // how would I replace the word // "world" with "there" so I can have this $str = 'Hello there!';
Comment