i see a few code project solutions:
but wanted to see if there was a regular implementation in javascript?
|
i see a few code project solutions: but wanted to see if there was a regular implementation in javascript?
| |||||
feedback
|
|
If you have to write code for Internet Explorer make sure you chose an implementation, which uses array joins. Concatenating strings with the When I have to do lots of string concatenations I usually fill an array and don't use a string builder class:
Note that the | |||||||||||||
feedback
|
|
No, there is no built-in support for building strings, you have to use concatenation instead. You can, of course, make an array of different parts of your string and then call EDIT. I made an experiment to compare the speed of
I tested it in IE8 and FireFox 3.5.5, both on a Windows 7 x64. In the beginning I tested on small number of iterations (some hundred, some thousand items). The results were unpredictable (sometimes string concatenation took 0 milliseconds, sometimes it took 16 milliseconds, the same for array joining). When I increased the count to 50'000, the results were different in different browsers - in IE the string concatenation was faster (94 milliseconds) and join was slower(125 milliseconds), while in Firefox the array join was faster (113 milliseconds) than string joining (117 milliseconds). Then I increased the count to 500'000. Now the Maximum iteration count I could test in IE without having "the script is taking too long to execute" was 850'000. Then IE was 1593 for string concatenation and 2046 for array join, Firefox had 2101 for string concatenation and 2249 for array join. Results - if the number of iterations is small, you can try to use UPDATE
This means - if you need to support IE6, choose | |||||||||||
feedback
|
|
That code looks like the route you want to take with a few changes. You'll want to change the append method to look like this. I've changed it to accept the number 0, and to make it return
| |||||||
feedback
|
|
There is no built in type for StringBuilder but that code looks quite reasonable | |||
|
feedback
|