Question: Does anyone know if there is way to separate a generic string of sums into separate strings?

For example if we have : a*b+c*(d+e)+f+g+h*(k*p+l):
is there a way to write a loop or script so it could give me: [a*b,c*(d+e),f,g,h*(k*p+l)]:

Please Wait...