StringVariable | String to insert into. |
InsertValue | Value to insert. |
WhereAt | Start index of insertion. First character of InsertValue will appear here. |
If the insert location is past the end index of the string then spaces will fill the intervening indices (see example).
Note that this command does not currently support end+1
or end-1
as some string commands do. You could use string length
instead, if need be.