replace-string <string> \ ( copy <replacement> ) | ( copy-end <replacement> ) \ [ start-with <start with> ] \ [ length <length> ]Copied!
set-string b="none" set-string a="some string is here" replace-string a copy bCopied!
set-string b="none" set-string a="some string is here" replace-string a copy-end bCopied!
set-string b="none" set-string a="some string is here" replace-string a copy b start-with 3 length 3Copied!
set-string b="none" set-string a="some string is here" replace-string a copy-end b start-with 6 length 2Copied!