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 in javascript like `#box2' and I just want the '2' from it.

Tried:

var thestring = $(this).attr('href');
var thenum = thestring.replace( /(^.+)(\w\d+\w)(.+$)/i,'$2');
alert(thenum);

It still returns #box2 in the alert, how can I get it to work?

It needs to accommodate for any length number attached on the end.

share|improve this question

6 Answers

up vote 10 down vote accepted
 var thenum = thestring.replace( /^\D+/g, '');

Basically, replace all leading non-digits with nothing.

share|improve this answer
thanks, works great – user1022585 Apr 4 '12 at 1:18
1  
-1, "#box2_col3".replace( /^\D+/g, '') should have shown 2, not 2_col3. – shiplu.mokadd.im Apr 4 '12 at 1:27
@shiplu.mokadd.im: I don't see any reference to #box2_col3 in the question. – thg435 Apr 4 '12 at 1:30
Yes there is no reference of #box2_col3. But see the regex OP used (\w)(.+$))which clearly indicates there are other characters after the number. – shiplu.mokadd.im Apr 4 '12 at 1:33
1  
You could make replace work with leading numbers by using: theString.replace(/^.*\D+/g, '');, but shiplu.mokadd.im's solution is better. – LandonSchropp Apr 4 '12 at 2:35
show 2 more comments

Using match function.

var thenum = thestring.match(/\d+$/)[0];
alert(thenum);

jsfiddle

share|improve this answer
4  
This is the simplest solution. – LandonSchropp Apr 4 '12 at 2:33

You should try the following:

var txt = "#div-name-1234-characteristic:561613213213";
var numb = txt.match(/\d/g);
numb = numb.join("");
alert (numb);​

result

1234561613213213
share|improve this answer

For a string such as #box2, this should work:

var thenum = thestring.replace(/^.*(\d+).*$/i,'$1');

jsFiddle:

share|improve this answer

You can use regular expression.

var txt="some text 2";
var numb = txt.match(/\d/g);
alert (numb);

That will alert 2.

share|improve this answer
-1 multiple digits will not be captured and for using array in alert – shiplu.mokadd.im Apr 4 '12 at 1:24

You can use Underscore String Library as following

var common="#box"
var href="#box1"

_(href).strRight(common)

result will be : 1

See :https://github.com/epeli/underscore.string

DEMO:
http://jsfiddle.net/abdennour/Vyqtt/
HTML Code :

<p>
    <a href="#box1" >img1</a>
    <a href="#box2" >img2</a>
    <a href="#box3" >img3</a>
    <a href="#box4" >img4</a>
</p>
<div style="font-size:30px"></div>

JS Code :

var comm="#box"
$('a').click(function(){
  $('div').html(_($(this).attr('href')).strRight(comm))})

if you have suffix as following :

href="box1az" 

You can use the next demo :

http://jsfiddle.net/abdennour/Vyqtt/1/

function retrieveNumber(all,prefix,suffix){
 var left=_(all).strRight(prefix);
 return _(left).strLeft(suffix);

}
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.