>>-OVERLAY(new,target------------------------------------------->
>--+---------------------------------------+--)----------------><
+-,--+---+--+-------------------------+-+
+-n-+ +-,--+--------+--+------+-+
+-length-+ +-,pad-+
1. If you specify n, it must be a positive whole number.
Example 7.59. Builtin function OVERLAY
OVERLAY(" ","abcdef",3) -> "ab def"
OVERLAY(".","abcdef",3,2) -> "ab. ef"
OVERLAY("qq","abcd") -> "qqcd"
OVERLAY("qq","abcd",4) -> "abcqq"
OVERLAY("123","abc",5,6,"+") -> "abc+123+++"