vote up 0 vote down star

hi all,

I have a string build up like varstring1_varstring2_id1_id2 eg: move_user_12_2 .

I want to extract id1 and id2 out of the string. Since I'm a complete prototype beginner I'm having some troubles solving this.

Thanks Stijn

flag

3 Answers

vote up 1 vote down check

You could probably just use the built-in string.split() operator

var s = "move_user_12_2".split('_');
var id1 = s[2], id2 = s[3];
link|flag
vote up 3 vote down

If by prototype you mean the prototype javascript framework, then what you need is the string.split method. So, in your case, the code would be something like

var myString = 'move_user_12_2';
var stringParts = myString.split('_');
var id1 = stringParts[2];
var id2 = stringParts[3];
link|flag
vote up 0 vote down

A regular expression can also be handy

var str = "move_user_12_2";
var ids = str.match(/(\d+)/g);
alert(ids[0] + "\n" + ids[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.