Is it possible with regex
find polynomial coefficients and degrees this type of polynomials?
(9.2+ln5*sin60)*x^5+2.4*x^4-5.7*x^3-4.1*x^2+2.8*x-9.1
In output should be
9.2+ln5*sin60 -> 5 2.4 -> 4 -5.7 -> 3 -4.1 -> 2 2.8 -> 1 -9.1 -> 0