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

Given a JS Object: var obj = { a: { b: '1', c: '2' } } and a string 'a.b' how can I convert the string to dot notation so I can go: var val = obj.a.b;

If the string was just 'a' I can use obj[a] but this is more complex. I imagine there is some straightforward method but it escapes at present.

share|improve this question
eval with obj as context? – Andrey Sidorov Jun 18 '11 at 4:48
3  
@Andrey eval is evil; don't use it – mc10 Jun 18 '11 at 4:49

12 Answers

up vote 16 down vote accepted

Here's an elegant one-liner that's 10x shorter than the other solutions:

function index(obj,i) {return obj[i]}
'a.b.etc'.split('.').reduce(index, obj)

(Not that I think eval is a bad thing, but this method doesn't use eval.)

In response to those who still are afraid of using reduce despite it being in the ECMA-262 standard (5th edition), here is a two-line recursive implementation:

function multiIndex(obj,is) {  // obj,[1,2,3] -> obj[1][2][3]
    return is.length ? multiIndex(obj[is[0]],is.slice(1)) : obj
}
function pathIndex(is) {       // obj,'1.2.3' -> obj[1][2][3]
    return multiIndex(obj,is.split('.'))
}
pathIndex('a.b.etc')
share|improve this answer
1  
reduce is not supported in all currently used browsers. – Ricardo Tomasi Jun 18 '11 at 6:01
2  
@Ricardo: Array.reduce is part of the ECMA-262 standard. If you really wish to support outdated browsers, you can define Array.prototype.reduce to the sample implementation given somewhere (e.g. developer.mozilla.org/en/JavaScript/Reference/Global_Objects/… ). – ninjagecko Jun 18 '11 at 6:12
@ninjagecko - a different approach. What about assigning a new value, as @tylermwashburn & @CD Sanchez have shown. – nevf Jun 18 '11 at 7:03
@ninjagecko - forget the assignment question. I have worked it out. A very interesting approach indeed. – nevf Jun 18 '11 at 7:11
2  
Yes but it's easy enough to put the two lines into a function. var setget = function( obj, path ){ function index( robj,i ) {return robj[i]}; return path.split('.').reduce( index, obj ); } – nevf Jun 18 '11 at 7:59
show 4 more comments

A little more involved example with recursion.

function recompose(obj,string){
    var parts = string.split('.');
    var newObj = obj[parts[0]];
    if(parts[1]){
        parts.splice(0,1);
        var newString = parts.join('.');
        return recompose(newObj,newString);
    }
    return newObj;
}


var obj = { a: { b: '1', c: '2', d:{a:{b:'blah'}}}};

alert(recompose(obj,'a.d.a.b')); //blah
share|improve this answer
This is definitely an interesting approach. +1 – tylermwashburn Jun 18 '11 at 5:33
var a = { b: { c: 9 } };

function value(layer, path, value) {
    var i = 0,
        path = path.split('.');

    for (; i < path.length; i++)
        if (value != null && i + 1 === path.length)
            layer[path[i]] = value;
        layer = layer[path[i]];

    return layer;
};

value(a, 'b.c'); // 9

value(a, 'b.c', 4);

value(a, 'b.c'); // 4

This is a lot of code when compared to the much simpler eval way of doing it, but like Simon Willison says, you should never use eval.

Also, JSFiddle.

share|improve this answer
Great, this works a treat and is shorter than CD Sanchez. Thanks. – nevf Jun 18 '11 at 6:58
var find = function(root, path) {
  var segments = path.split('.'),
      cursor = root,
      target;

  for (var i = 0; i < segments.length; ++i) {
   target = cursor[segments[i]];
   if (typeof target == "undefined") return void 0;
   cursor = target;
  }

  return cursor;
};

var obj = { a: { b: '1', c: '2' } }
find(obj, "a.b"); // 1

var set = function (root, path, value) {
   var segments = path.split('.'),
       cursor = root,
       target;

   for (var i = 0; i < segments.length - 1; ++i) {
      cursor = cursor[segments[i]] || { };
   }

   cursor[segments[segments.length - 1]] = value;
};

set(obj, "a.k", function () { console.log("hello world"); });

find(obj, "a.k")(); // hello world
share|improve this answer
Thanks for all the quick responses. Don't like the eval() solutions. This and the similar posts looks best. However I'm still having a problem. I am trying to set the value obj.a.b = new value. To be precise b's value is a function so I need to use obj.a.b( new_value ). The function is called but the value isn't set. I think it's a scope issue but I'm still digging. I realize this is outside of the scope of the original question. My code is using Knockout.js and b is an ko.observable. – nevf Jun 18 '11 at 5:16
@nevf: I added a second function that I think does what you want. You can customize it to your liking depending on the behavior you want (e.g. should it create the objects if they do not exist?, etc.). – CD Sanchez Jun 18 '11 at 5:25
@nevf But mine does it with one function. ;D – tylermwashburn Jun 18 '11 at 5:32
thanks for the update which I was able to use. @tylermwashburn - and thanks for your shorter implementation which also works a treat. Have a great w/e all. – nevf Jun 18 '11 at 6:59
@nevf: I didn't realize this was a golfing contest... – CD Sanchez Jun 18 '11 at 8:23

Do it like this, but don't trim, and split on . instead of }{.

share|improve this answer

to my knowledge obj.a is the same as obj['a']. So you can split the string 'a.b' to 'a', 'b'... and then use obj['a']['b']

share|improve this answer
var obj = { a: { b: '1', c: '2' } }; 
var s = "a.b";
var val = eval("obj."+s);
share|improve this answer

using variable obj.a.b shall return '1'. and obj.a.c shall return '2'

So, if you have a string 'a.b' and want to get it. you could do eval('val=obj.'+'a.b');

<html>
<head>
</head>
<body>
<script>
var obj = { a: { b: '1', c: '2' } } 
eval('val=obj.'+'a.b');
alert(val);
</script>
</body>
</html>

This is a simple code I tried out.

I hope this is what you were looking for.

share|improve this answer
@mc10 - wht is eval evil? apart from the execution time? – Lord Loh. Jun 18 '11 at 4:56

It's not clear what your question is. Given your object, obj.a.b would give you "2" just as it is. If you wanted to manipulate the string to use brackets, you could do this:

var s = 'a.b';
s = 'obj["' + s.replace(/\./g, '"]["') + '"]';
alert(s); // displays obj["a"]["b"]
share|improve this answer
This doesn't work for a.b.c, and doesn't really accomplish what they want.. They want the value, not an eval path. – tylermwashburn Jun 18 '11 at 5:35
I now fixed it so it works with a.b.c, but you are right, apparently he wanted to get/set the value of the property at obj.a.b. The question was confusing to me, since he said he wanted to "convert the string".... – Mark Eirich Jun 18 '11 at 5:48
Good job. :) It was a little vague. You did a good job of conversion though. – tylermwashburn Jun 18 '11 at 5:53

Other proposals are a little cryptic, so I thought I'd contribute:

Object.prop = function(obj, prop, val){
    var props = prop.split('.')
      , final = props.pop(), p 
    while(p = props.shift()){
        if (typeof obj[p] === 'undefined')
            return undefined;
        obj = obj[p]
    }
    return val ? (obj[final] = val) : obj[final]
}

var obj = { a: { b: '1', c: '2' } }

// get
console.log(Object.prop(obj, 'a.c')) // -> 2
// set
Object.prop(obj, 'a.c', function(){})
console.log(obj) // -> { a: { b: '1', c: [Function] } }
share|improve this answer

I have extended the elegant answer by ninjagecko so that the function handles both dotted and/or array style references, and so that an empty string causes the parent object to be returned.

Here you go:

string_to_ref = function (object, reference) {
    function arr_deref(o, ref, i) { return !ref ? o : (o[ref.slice(0, i ? -1 : ref.length)]) }
    function dot_deref(o, ref) { return ref.split('[').reduce(arr_deref, o); }
    return !reference ? object : reference.split('.').reduce(dot_deref, object);
};

See my working jsFiddle example here: http://jsfiddle.net/sc0ttyd/q7zyd/

share|improve this answer

jsFiddle Demo

Here is something I recently made and am using to solve the situation where I have an object and I need to access it with a string as the index but where the string has nested notation:

var a = {};
a.b = {};
a.b.c = {};
a.b.c.d = 5;

var str = "c.d";
var clause = "return obj."+str;
alert(Function("obj",clause)(a["b"]));//5
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.