I have this:

var result = "(55.6105023, 12.357556299999942)";

I would like to remove the brackets, and i thought that you could do this with substr (remove the first and last char in the string) <- But i can only manage to remove the last char if i know the length.

And then i would like to put the first number 55.6105023 into variable lat and the second 12.357556299999942 to variable lng by using explode() <- but this does not exists in JS

How can i do this?

link|improve this question

77% accept rate
feedback

7 Answers

up vote 1 down vote accepted

Use slice(), which can take negative indices and unlike substr() is standardized and works in all browsers:

result.slice(1, -1);

You can use split() for the other part:

var parts = result.slice(1, -1).split(", ");
var lat = parts[0], lng = parts[1];

Alternatively you could use a regex:

var res = /^\(([\d.]+),\s*([\d.]+)\)$/.exec(result);
var lat = res[1], lng = res[2];
link|improve this answer
Slice wont work, undefined function slice. – Karem Oct 26 '11 at 14:48
@Karem: I assume from the big green tick that you realized that slice() does work? – Tim Down Oct 26 '11 at 15:34
feedback

Remove the first and last characters by using substr, replace or slice. Use split to split the string into an array on the comma. Like so:

var chunks = result.slice(1, -1).split(", "); 
var lat = chunks[0].trim();
var lng = chunks[1].trim();

I've added the trim to make sure all whitespaces are gone.

link|improve this answer
1  
trim() is ECMAScript 5 and not universally supported (it's unsupported IE < 9 for example). See developer.mozilla.org/en/JavaScript/Reference/Global_Objects/… – Tim Down Oct 26 '11 at 14:50
@TimDown: You are right. Thanks for pointing this out. I hate that kind of things...trim is such a common function :s – Baszz Oct 26 '11 at 14:52
feedback

You can use a regular expression to pull out the numbers:

"(55.6105023, 12.357556299999942)".match(/[\d\.-]+/g);
// returns ["55.6105023", "12.357556299999942"]

The regex will match digits, decimal points and minus signs.

link|improve this answer
feedback
var result = "(55.6105023, 12.357556299999942)"; 
var substring = result.substring(1, result.length - 1);
var coordinates = substring.split(",");
var lat = coordinates[0];
var lng = coordinates[1];
link|improve this answer
feedback

You can use string manipulation functions like split and slice to parse out the numbers (or even a regular expression with matching groups), and the Number constructor to parse a number from a string:

var parseResult = function(s) {
  var ss = s.split(', ');
  return [Number(ss[0].slice(1)), Number(ss[1].slice(0, -1))];
};

var x = parseResult('(55.6105023, 12.357556299999942)');
x[0]; // => 55.6105023
x[1]; // => 12.357556299999942
link|improve this answer
feedback

You can do it by using substring and indexOf:

var result = "(55.6105023, 12.357556299999942)";
var lat = result.substring(result.indexOf('(')+1, result.indexOf(','));
var lon = result.substring(result.indexOf(', ')+1, result.indexOf(')'));

alert(lat); // alerts 55.6105023
alert(lon); // alerts 12.357556299999942
link|improve this answer
feedback

Here is another way, which first converts the data into proper JSON and then into a JavaScript array:

str = str.replace('(', '[').replace(')', ']');
var data = JSON.parse(str),
    lat = data[0],
    lng = data[1];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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