utils.replace or String.replace

Apart from the fact that we can replace using regex with String.replace is there also another reason why to use one or the other?

Speed or any other reason/issue?

not really.
utils.replace is much simpler and because of that it could be faster if what it does is what you want. But you won’t notice it.