No. IMO this is not a common operation and should not be in core. If you need do it a lot, you should not use java string in the first place.
What should be included in core is a transient string, with support for assoc!. Jozef On Wed, Apr 2, 2014 at 7:49 PM, Andy Smith <the4thamig...@googlemail.com>wrote: > just a shame its not in the core, no? > > > On Wednesday, 2 April 2014 18:06:03 UTC+1, A. Webb wrote: >> >> Using subs (no need for join) is the way I would go, just define >> >> >> (defn replace-at [s n c] (str (subs s 0 n) c (subs s (inc n)))) >> >> (replace-at "hello" 1 "a") ;=> "hallo" >> >> and carry on. >> >> >> > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to clojure@googlegroups.com > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > clojure+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to clojure+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.