views:

71

answers:

1

How do I split a string by char 0 / byte 0 / 0x00 / \u0000 in flash actionscript 3

A: 

K solved if anyone needs help with this turns out you can just do this

var packets:Array = data.split("\x00");
SSpoke