So that you can solve problems like this for yourself more easily in the future, I want to try to talk through the debugging process.
Okay, so what exactly is the goal? For that string, what float value should we get, and why? Step by step, what logic do you want it to use?
Okay, and after those steps, what value did you see for climbing["UTC time"]? Does it make sense to try to convert that to a float? What do you think the result should be?
Okay, so that tells you pretty directly what happened: the string was completely erased. Does that agree with what you observe, for example, if you try to check the climbing["UTC time"] value directly?
What if you try checking it after each step? Can you see where something goes wrong?
(Hint: when you write regex=True, what do you expect this to mean? Assuming that you understand what regex is generally - can you see why using a regex like ".", and replacing those matches with "", might cause a problem?)