I try to create a project with use a Split in AC2.
this I have
in_pers = 3x5+5x3+6x8;
var tmp:Array = in_pers.split("+");
trace(tmp); //output == 3x5, 5x3, 6x8
but, how if in_pers = 3x5+5x3-6x8-4x2;
how can I get the result 3x5, 5x3, 6x8, 4x2
how to use the split with two delimiter.
Best regard..