Name: Anonymous 2011-11-03 22:47
I was translating a flash object into a C++ object and I ran into this..
public static function toArray(param1:String) : ByteArray
{
param1 = param1.replace(/\s|:/gm, "");
What in the world is "/\s|:/gm"? can anyone give me an explanation or link to some documentation?
public static function toArray(param1:String) : ByteArray
{
param1 = param1.replace(/\s|:/gm, "");
What in the world is "/\s|:/gm"? can anyone give me an explanation or link to some documentation?