On Wed, Sep 29, 2010 at 9:01 PM, HiHeelHottie <[email protected]> wrote: > Thanks for the response. What if you are appending over different > lines of code? Would it be slightly more efficient to use one > StringBuilder or not worth the bother.
I'm trying to think what your code would look like that you'd have multiple 'lines' computing pieces that you are assembling into a string section at a time...? If you're accumulating things that you want to turn into a string later, you could always put the pieces into a vector and then do: (apply str vector-of-pieces) -- Sean A Corfield -- (904) 302-SEAN Railo Technologies, Inc. -- http://getrailo.com/ An Architect's View -- http://corfield.org/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
