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 the following:

    var hashID = location.hash.match(/\d/);

Where location.hash eqs: #/groups/58

I want hashID to equal = 58

Right now it equals an array. How can I get back just 58 as an int? THanks

share|improve this question

1 Answer

up vote 2 down vote accepted
  var hashID = parseInt(location.hash.match(/\d+/)[0])
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.