StringTools
Insert
insert a string into another
Calling Sequence
Parameters
Description
Examples
Insert( s, position, t )
s
-
string; Maple string
t
position
non-negative integer; position in s at which to insert t
The Insert(s, position, t) command inserts a string t into the string s at position. The value of position must be an integer in the range . Position is the position before the first character of s; position is the position after the first character of s; position is the position after the second character of s; and so on. Thus, Insert( s, 0, t ) is equivalent to , while Insert( s, length( s ), t ) is equivalent to .
All of the StringTools package commands treat strings as (null-terminated) sequences of -bit (ASCII) characters. Thus, there is no support for multibyte character encodings, such as unicode encodings.
Error, (in StringTools:-Insert) string index `5' out of range
See Also
string
Download Help Document