I have these values:
skew(1deg)
rotate(3)
skewY(10deg)
matrix(0, 0, 0, 0, 0, 0)
matrix could also be:
matrix(1, 2, 3, 4, 5, 6)
All i want to do is using regex generically extracting the exact values from above.
What i tried:
/skew\([0-9]+[a-zA-Z]*\)/g
/rotate\([0-9]+[a-zA-Z]*\)/g
/skewY\([0-9]+[a-zA-Z]*\)/g
/matrix\([0-9]+[a-zA-Z]*\)/g
so using the css properties like skew, rotate, skewY and matrix, i need to pass in these properties but want the value from the css property till the end character ")" generically, how can this be achieved.