String-Erase!

(string-erase! string integer1 integer2) -> null

Beginning at the index indicated by integer1 (see Indexing System), removes a number of bytes from string as indicated by integer2.

>> (define a "abcdefgh")
:: "abcdefgh"
>> (string-erase! a 2 4)
:: null
>> a
:: "abgh"