# $EPIC: insert.txt,v 1.3 2007/03/02 02:32:04 jnelson Exp $
$insert(<num> <word> <text>)
This function can be used to insert text into the middle of a string at a known location. You probably found the location by using $index() or $rindex().
input <text> with <word> inserted after the <num>th character
$insert(3 baz foobarbooya) returns "foobazbarbooya"