I have the following output:
time = 15:40:32.81
And I want to eliminate : and the . so that it looks like this:
15403281
I tried doing a
time.gsub(/\:\s/,'')
but that didn't work.
|
|
|
||||
|
|
|
If you want to be fancy and use an actual time object...
|
|||
|
|
(Updated to replace |
|||||||||||
|
But it'll edit your variable. If you don't want it:
|
|||
|
|