vote up 2 vote down star
1

Hi, I just want a very handy way to extract the numbers out of a string in Javascript and I am thinking about using jQuery, but I prefer the method that proves to be the simplest. I have requested the "left" attribute of a css block using jQuery like this:

var stuff = $('#block').css("left")

The result of "stuff" is

1008px

I just want to get rid of the "px" because I need to do a parseInt of it. What is the best method? If Javascript had a left() function, this would be very simple. Thanks

flag

35% accept rate

6 Answers

vote up 7 vote down check

Just do a parseInt(), it will ignore the 'px' for you.

link|flag
3  
parseInt(stuff,10); //Don't forget the radix – some Jan 29 at 11:31
vote up 3 vote down

$('#block').offset().left contains the actual left position value as an integer.

link|flag
vote up 2 vote down
parseInt(stuff);
link|flag
parseInt(stuff,10); //Don't forget the radix – some Jan 29 at 11:32
vote up 2 vote down

To answer your other question, you can add a left() funtion to JavaScript's built-in String prototype class so all other strings will inherit it:

String.prototype.left = function(n) {
    return this.substring(0, n);
}

And once you include this you can say:

var num = "1008px".left(4);

I add helpers like trim and capitalize in a base JavaScript file for these kinds of things.

link|flag
fwiw, the native substr() is equivalent to left(), but I'm all for adding cheap flexibility – annakata Jan 29 at 13:12
@annakata: substr() has not been standardized by ECMAScript and is thus deprecated. And still, you'd need to specify the start and length, but you are right, left() is just a convenience. – davidavr Jan 29 at 13:27
There also is slice (15.5.4.13) – some Jan 29 at 23:29
vote up 1 vote down

Left() is of almost no use here, as you'd first have to calculate the offset. You could, however, use a regular expression, to either pull out the number, or delete illegal characters:

var value = "1080px";
var num = value.replace(/[^\d]+/g, '');
// or
var num = value.replace(/\D+/g, '');
// or
var num = value.match(/\d+/)[0];

That is, in case parseInt() isn't enough for you... :)

link|flag
vote up 0 vote down

Hi,

I need to get left, but in firefox 3.5, I just got "auto".

console.log($("#menu_").css("left")); auto

The element have float: left and contained inside other div. I try to get the parent left, but it return "aotu" too.

I'm using jquery 1.2.6. Is this have been fixed in jquery 1.3.1?

link|flag

Your Answer

Get an OpenID
or

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