Copies a string.
strcopy <string> <pos> <len> <strvar>
Copies a substring of <string> to the string variable <strvar>. The substring begins at the <pos>th(1-origin) character in <string>, and its length is <len>.
strcopy 'tera term' 6 4 substr ; substr='term'