Is it any faster to use
myString.replace(/foo/g,"bar")
rather than
myString.split("foo").join("bar")
for long strings in ActionScript 3? Or are they just two comparable methods of achieving the same result?
|
1
|
Is it any faster to use
rather than
for long strings in ActionScript 3? Or are they just two comparable methods of achieving the same result?
|
|||
|
|
|
|
I used gSkinners PerformaceTest to run a quick test on this. I think the difference is minimal at best. I would say that
|
|||
|
|
|
Here's a nice blog post to start with. But you really should measure to know which is faster. |
||||
|
|
|
David R. quoted from the blog Dirkgently linked:
Also, the time difference appears to be minimal according to that blog. So yes, replace should be a much cleaner way of doing this. |
||
|
|