I've come across a problem in that I don't see a way to easily convert strings to typed arrays, and converting from typed arrays to strings appears to be a real pain requiring a manual char code conversion for every byte. Is there any better methods to convert strings to typed arrays or vise-versa?

Example:

I have a UTF8 encoded string, "Something or other", and I want to write it to an ArrayBuffer in length then string format.

link|improve this question

What kind of conversion do you want exactly? Can you give us an example? – Rodolphe Nov 16 '11 at 15:20
Typed Arrays are only implemented for numbers. You somehow need to convert a string into numbers, i.e. str.charCodeAt and String.fromCharCode. You can make it more convenient, though: jsfiddle.net/ACXM7. – pimvdb Nov 16 '11 at 15:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.