Hello I have question as I having issue to find a solution that works
basically in my string I have text like
anim(10, <-0.016, -0.006, 0.217>, <0.000, 0.000, 0.707, 0.707>, <0.016, 0.010, 0.012>);
what I looking to achieve it to break down this into array
something like
array(
0 => 'anim',
1 => '10',
2 => '<-0.016, -0.006, 0.217>',
3 => '<0.000, 0.000, 0.707, 0.707>',
4 => '<0.016, 0.010, 0.012>'
);
so I can prepare the data to send back to another script that will use it as I have special functions to make it easier for users to use.
hope someone can help as far as I managed to to break down this into 2 arrays but I need them on each line of array so I can run loops to prepare the data
Stephen