# replace

```lua
return function
    local val = 'hello';
    val = helper.replace(val, 'o', '8');
    log(val); --logs hell8
end
```
