I have a complex strings like the following format pattern:
(Command)(Parameter_1,Parameter_2,Parameter_3,Parameter_n)
Example: PADDING_LEFT(LAST_USE_COUNTER(1450,5),5,0)
I want to split them as following:
Command:PADDING_LEFT
Parameter_1:LAST_USE_COUNTER(1450,5)
Parameter_2: 5
Parameter_3: 0
Is there a way to a break such string?