copy-string <source string> to <dest string> \ [ start-with <start with> ] \ [ length <length> ]Copied!
set-string str = "original string" // string to change set-string orig = str // references original copy of the string to change copy-string str to str // make a copy of string to change and assign it to itself upper-string str // change the copy // Now "str" references "ORIGINAL STRING" // and "orig" references "original string"Copied!
set-string other_string="some value" copy-string other_string to my_strCopied!
set-string other_string="some value" copy-string other_string to my_str length 3 start-with 1Copied!