I\'m looking for fast string concatenation class or so in Flex. Like StringBuilder in Java.
Thanks
You can create an array of strings and then use String.concat to combine them.
String.concat
However, I've never seen string manipulation come up as a bottleneck when profiling a Flex app. I have in .NET, but not Flex.