<li><code>(string-format [format: string] [value...])</code>: <code>string</code> (replaces `{}`'s in string with successive values)</li>
<li><code>(string->number [string] [[base: number]])</code>: <code>number</code> If a non-decimal base is supplied, the input string will be parsed as an integer and any flaoting point value will be floored</li>
<li><code>(string->number [string] [[base: number]])</code>: <code>number/#f</code> If a non-decimal base is supplied, the input string will be parsed as an integer and any flaoting point value will be floored. A valid base passed with a string that does not parse to a number will return <code>#f</code></li>
<li><code>(string->list [string] [[value]])</code>: <code>list</code> (splits the first string at each instance of value, cast as a string)</li>