What I want is this:
These numbers are extracted from a script that I run on Selenium IDE. The problem is that those numbers come as text.
What I need is to convert, for example, "56h 29m" to "56.5" ... "27.75h" to "27.75".
Some of them are easy (like the first 2 columns), I just remove the last letter "h" and it's converted to number...the problem is when the numbers have this "h" in the middle with a space and the "m" at the end (last column).
Is there a way to implement this?