While parsing a webpage, I came across a JavaScript function stored as a string:
"translate(737.4170532226562,136.14541625976562)"
My goal is to extract the two parameters from this function. I currently parse the string up to the '(' and ',' and ')', but I am curious if there is an alternative method to retrieve the parameters in this string function.