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

Possible Duplicate:
How might I extract the number from a number + unit of measure string using JavaScript?

How to extract number from string like this in JS. String: "Some_text_123_text" -> 123

share|improve this question
show your implementations first – Talha Ahmed Khan Nov 23 '12 at 10:21
Which number. The first one, the last one or all digits concatenated? – Jan Dvorak Nov 23 '12 at 10:26
dont forget to upvote and mark answer as accepted if you got the info you want... – Pranay Rana Nov 23 '12 at 11:11

marked as duplicate by Beerlington, BenSwayne, Mike Pennington, Nik...., Nimit Dudani Nov 24 '12 at 5:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

JSFiddle Demo

var s = "Some_text_123_text";
var index = s.match(/\d+/);
document.writeln(index);​
share|improve this answer
you've missed a "var" – GottZ Nov 23 '12 at 10:26
@Jan-StefanJanetzky- ya but its working in jasfiddle..updated now – Pranay Rana Nov 23 '12 at 10:27
1  
it sure works but thats not why i said it. – GottZ Nov 23 '12 at 10:28
TIL about document.writeln – Jan Dvorak Nov 23 '12 at 10:29
1  
this works great!! – okok Nov 23 '12 at 10:40

try this

var string = "Some_text_123_text";
var find = string.split("_");
for(var i = 0; i < find.length ; i ++){
 if(!isNaN(Number(find[i]))){
  var num = find[i];
 }
}

alert(num);
share|improve this answer
+1 this will also extract -123 from around_-123_minutes – Jan Dvorak Nov 23 '12 at 10:35
oh good didn't tryed with negatives, did you checked with 0.5? – okok Nov 23 '12 at 10:37
Oh, sorry, this will only extract positive values. – Jan Dvorak Nov 23 '12 at 10:38
1  
You could change this to find[i] == find[i]. Evaluates true for anything but NaNs (which are not numbers :-) ) – Jan Dvorak Nov 23 '12 at 10:38
1  
Sorry again - find[i] == find[i] will perform string comparison – Jan Dvorak Nov 23 '12 at 10:41
show 3 more comments

try this working fiddle

var str = "Some_text_123_text";
var patt1 = /[0-9]/g;
var arr= str.match(patt1);
var myval = arr.join("");
share|improve this answer
Why are you using the global flag? – Jan Dvorak Nov 23 '12 at 10:28
why are you using [0-9] instead of \d? – GottZ Nov 23 '12 at 10:29
myval is still a string, albeit numeric. – Jan Dvorak Nov 23 '12 at 10:33
@jan dvorak if I don't use global than I get only 1 – rajesh kakawat Nov 23 '12 at 10:33
@Jan-Stefan Janetzky I am not expert on regular expression, what I know I suggested – rajesh kakawat Nov 23 '12 at 10:38

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