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
|
|
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
|
|||
|
|
|
|
You could probably just use the built-in string.split() operator
|
||
|
|
|
|
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
|
||
|
|
|
|
A regular expression can also be handy
|
||
|
|