Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string being grabbed from a page in the format "4m 26s", how can I strip this into just seconds?

Many thanks,

share|improve this question
1  
What result are you looking for: 26s or 266s? – Alan Moore Jun 28 '10 at 11:41
Looking for 266, as in 4*60+26 – Pez Cuckow Jun 28 '10 at 14:11

4 Answers

up vote 2 down vote accepted
var str = "4m 26s";
var arr = str.split(" ");
var sec = parseInt(arr[0], 10)*60 + parseInt(arr[1], 10);

You don't need regex if you use parseInt...

share|improve this answer

Simple regex will work:

var s = '21m 06s';

var m = /(\d{1,2})m\s(\d{1,2})s/.exec(s);

var mins = parseInt(m[1], 10);
var secs = parseInt(m[2], 10);
share|improve this answer
-1 regexp is unnecessary – galambalazs Jun 29 '10 at 11:49
This is a silly comment; you could technically say regexes are always unnecessary. It solves the problem as requested. I could downvote your answer saying that using split is unnecessary. – Evan Trimboli Jun 29 '10 at 13:09
no, here regexp is slow, harder to read and harder to maintain, thus overcomplicates the problem. you should use regexp when you have a good reason for it. you could've edited your code but you're rather arguing with me. – galambalazs Jun 29 '10 at 16:23
Slow? Care to back that up with some numbers? I think you'll find there's little to no difference in terms of performance. Harder to read and harder to maintain are subjective, especially since it's a small and easily readable regex. Just because you aren't comfortable with it, doesn't make it complicated. Again, stupid comment. – Evan Trimboli Jun 29 '10 at 16:52
why is it so hard to admit there is a better way? happens to everyone... "it's easy to make things bigger, it's hard to make things better..." – galambalazs Jun 29 '10 at 17:17
show 1 more comment

A non-regex way:

Do a string.split(" ") on your string; then do string.slice(0, -1) on both arrays. Multiply the first entry by 60. Add them together.

share|improve this answer
var str = "4m 26s";
console.log(str.match(/\d+m\s+(\d+)s/)[1]);//26
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.