vote up 1 vote down star

Hi guys I have a string that looks something like the following 'test:1;hello:five;just:23'. With this string I need to be able to do the following.

....
var test = MergeTokens('test:1;hello:five;just:23', 'yes:23;test:567');
...

The end result should be 'test:567;hello:five;just:23;yes:23' (note the exact order of the tokens is not that important).

Just wondering if anyone has any smart ideas of how to go about this. I was thinking a regex replace on each of the tokens on right and if a replace didn't occur because there was not match just append it. But maybe there is better way.

Cheers Anthony

Edit: The right side should override the left. The left being what was originally there and the right side being the new content. Another way of looking at it, is that you only keep the tokens on the left if they don't exist on the right and you keep all the tokens on the right.

@Ferdinand Thanks for the reply. The problem is the efficiency with which the solution you proposed. I was initially thinking down similar lines but discounted it due to the O(n*z) complexity of the merge (where n and z is the number tokens on the left and right respectively) let alone the splitting and joining.

Hence why I was trying to look down the path of a regex. Maybe behind the scenes, regex is just as bad or worse, but having a regex which removes any token from the left string that exists on the right (O(n) for the total amount of token on the right) and then just add the 2 string together (i.e. vat test = test1 + test2) seems more efficient. thanks

flag

35% accept rate
What is the criteria of the merge operation ? In case of your example, why did you choose test:567 over test:1 ? – Vijay Dev Mar 29 at 12:50
see edit in the above – vdhant Mar 29 at 12:54
Lookup in a hashtable (JavaScript Object) is O(1), so the merge operation is linear, not O(n²). You can't really do better than that, even if regex had the power to do what you wanted (which it can't). – bobince Mar 30 at 2:18
cool that is something that i did know... – vdhant Mar 30 at 2:35

2 Answers

vote up 0 vote down check

Hi guys

The following is what I ended thiking about. What do you guys recon?

Thanks Anthony

function Tokenizer(input, tokenSpacer, tokenValueSpacer) {
    this.Tokenizer = {};
    this.TokenSpacer = tokenSpacer;
    this.TokenValueSpacer = tokenValueSpacer;
    if (input) {
        var TokenizerParts = input.split(this.TokenSpacer);
        var i, nv;
        for (i = 0; i < TokenizerParts.length; i++) {
            nv = TokenizerParts[i].split(this.TokenValueSpacer);
            this.Tokenizer[nv[0]] = nv[1];
        }
    }
}

Tokenizer.prototype.add = function(name, value) {
    if (arguments.length == 1 && arguments[0].constructor == Object) {
        this.addMany(arguments[0]);
        return;
    }
    this.Tokenizer[name] = value;
}

Tokenizer.prototype.addMany = function(newValues) {
    for (nv in newValues) {
        this.Tokenizer[nv] = newValues[nv];
    }
}

Tokenizer.prototype.remove = function(name) {
    if (arguments.length == 1 && arguments[0].constructor == Array) {
        this.removeMany(arguments[0]);
        return;
    }
    delete this.Tokenizer[name];
}

Tokenizer.prototype.removeMany = function(deleteNames) {
    var i;
    for (i = 0; i < deleteNames.length; i++) {
        delete this.Tokenizer[deleteNames[i]];
    }
}

Tokenizer.prototype.MergeTokenizers = function(newTokenizer) {
    this.addMany(newTokenizer.Tokenizer);
}

Tokenizer.prototype.getTokenString = function() {
    var nv, q = [];
    for (nv in this.Tokenizer) {
        q[q.length] = nv + this.TokenValueSpacer + this.Tokenizer[nv];
    }
    return q.join(this.TokenSpacer);
}

Tokenizer.prototype.toString = Tokenizer.prototype.getTokenString;
link|flag
Well it's essentially what I suggested, grouped in an object. Go with it and don't think too much about optimization unless it really performs badly, which I doubt. – Ferdinand Beyer Mar 30 at 13:11
I did some research and the regex approach which I was thinking about, looks like it would perform slower. I know that this is wrapped in an object but this is what I was originally was looking at but wanted to see if there was an alternative approach. I found out there wasn't. Thanks though.seenext – vdhant Mar 30 at 23:30
Lastly I think the key difference with what I have put together here is on the merging side. I think that for large token sets because I don't use the nested loop to search for matches or another loop to join. I would think that performance in the above would be better. Let me know what you think. – vdhant Mar 30 at 23:34
vote up 5 vote down

I would use join() and split() to create some utility functions to pack and unpack your token data to an object:

// Unpacks a token string into an object.
function splitTokens(str) {
    var data = {}, pairs = str.split(';');
    for (var i = 0; i < pairs.length; ++i) {
        var pair = pairs[i].split(':');
        data[pair[0]] = pair[1];
    }
    return data;
}

// Packs an object into a token string.
function joinTokens(data) {
    var pairs = [];
    for (var key in data) {
        pairs.push(key + ":" + data[key]);
    }
    return pairs.join(';');
}

Using these, merging is easy:

// Merges all token strings (supports a variable number of arguments).
function mergeTokens() {
    var data = {};
    for (var i = 0; i < arguments.length; ++i) {
        var d = splitTokens(arguments[i]);
        for (var key in d) {
            data[key] = d[key];
        }
    }
    return joinTokens(data);
}

The utility functions are also useful if you want to extract some keys (say,"test") and/or check for existence:

var data = splitTokens(str);
if (data["test"] === undefined) {
    // Does not exist
} else {
    alert("Value of 'test': " + data["test"]);
}
link|flag
Was typing almost the same and checking the code in FireBug console :) – Vijay Dev Mar 29 at 12:58
See my edit in the above – vdhant Mar 29 at 22:55

Your Answer

Get an OpenID
or

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