It seems as if there is no function in the standard library of type char -> string -> string, which insert a char in front of (or at the end of) a string. There are workarounds, e.g. by using String.make or String.blit. Is there an elegant way to do this?
|
|
|||||||||
|
|
The code from pad is what I would use, because I like to treat strings as immutable if possible. But I wouldn't use
|
|||
|
|
|
I made a comparison of the efficiency of different approaches:
Here are the results:
|
|||||||||
|
Bufferis probably more appropriate for growing strings. – Basile Starynkevitch Dec 5 '11 at 21:44