From: Carl Eastlund (carl.eastlund at gmail.com) Date: Fri Nov 27 11:19:40 EST 2009 |
|
On Fri, Nov 27, 2009 at 11:14 AM, Charlie Smith <charliesmith001 at gmail.com> wrote: > string-append's fine if i want to add two stings only, but i'd like to add > strings inbetween other strings, for example > (define str "jumps over the ") > (define str2 "dog") > "the quick brown fox" + str + "lazy" + str2 It's just as easy with string-append: (string-append "the quick brown fox" str "lazy" str2) --Carl
Posted on the users mailing list. |
|