now why didn&#39;t I think of trying that...<div><br></div><div>thanks for clearing it<div><br></div><div><div class="gmail_quote">On Fri, Nov 27, 2009 at 9:49 PM, Matthias Felleisen <span dir="ltr">&lt;<a href="mailto:matthias@ccs.neu.edu">matthias@ccs.neu.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
(string-append &quot;the quick brown fox&quot; str &quot;lazy&quot; str2)<br>
<br>
(and you won&#39;t believe it, string-append works for 12,345 strings, too. I just tried it out:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Welcome to DrScheme, version 4.2.3.2-svn20nov2009 [3m].<br>
Language: Module custom; memory limit: 256 megabytes.<br>
#&lt;world&gt;<br>
&gt; (define s (apply string-append (build-list 12345 (lambda _ &quot;a&quot;))))<br>
</blockquote>
<br>
)<div><div></div><div class="h5"><br>
<br>
On Nov 27, 2009, at 11:14 AM, Charlie Smith wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
string-append&#39;s fine if i want to add two stings only, but i&#39;d like to add strings inbetween other strings, for example<br>
<br>
(define str &quot;jumps over the &quot;)<br>
(define str2 &quot;dog&quot;)<br>
<br>
&quot;the quick brown fox&quot; +  str + &quot;lazy&quot; + str2<br>
<br>
<br>
<br>
On Thu, Nov 26, 2009 at 10:42 PM, Robby Findler &lt;<a href="mailto:robby@eecs.northwestern.edu" target="_blank">robby@eecs.northwestern.edu</a>&gt; wrote:<br>
I believe string-append is exactly what the + is doing below, tho.<br>
What is different?<br>
<br>
Robby<br>
<br>
On Thu, Nov 26, 2009 at 6:43 AM, Charlie Smith<br>
&lt;<a href="mailto:charliesmith001@gmail.com" target="_blank">charliesmith001@gmail.com</a>&gt; wrote:<br>
&gt; hi<br>
&gt;<br>
&gt; i&#39;d like to know if there is some way of adding strings (sorry, i don&#39;t what<br>
&gt; the correct term for this is, maybe variable interpolation?) like for<br>
&gt; example in ruby it would be like<br>
&gt;<br>
&gt; str = &quot;sdfdsf&quot;<br>
&gt; puts &quot;something&quot; + str<br>
&gt; output: &quot;somethingsdsdf&quot;<br>
&gt;<br>
&gt; the function string-append isn&#39;t what I want, because i would be adding<br>
&gt; strings somewhat arbitarily in between other strings<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _________________________________________________<br>
&gt;  For list-related administrative tasks:<br>
&gt;  <a href="http://list.cs.brown.edu/mailman/listinfo/plt-scheme" target="_blank">http://list.cs.brown.edu/mailman/listinfo/plt-scheme</a><br>
&gt;<br>
&gt;<br>
<br>
_________________________________________________<br>
 For list-related administrative tasks:<br>
 <a href="http://list.cs.brown.edu/mailman/listinfo/plt-scheme" target="_blank">http://list.cs.brown.edu/mailman/listinfo/plt-scheme</a><br>
</blockquote>
<br>
</div></div></blockquote></div><br></div></div>