I have a string formatted like this:
item_questions_attributes_abc123_id
I'm specifically trying to get the abc123
bit. That string can be any alphanumeric of any case. No special characters or spaces.
I'm using jQuery, though I'm certainly fine with using straight javascript if that's the best solution.
I have a string formatted like this:
item_questions_attributes_abc123_id
I'm specifically trying to get the abc123
bit. That string can be any alphanumeric of any case. No special characters or spaces.
I'm using jQuery, though I'm certainly fine with using straight javascript if that's the best solution.
Share Improve this question asked Jul 5, 2011 at 21:36 ShpigfordShpigford 25.4k61 gold badges167 silver badges262 bronze badges3 Answers
Reset to default 7If it's always the 4th part of the string you can use split.
var original = 'item_questions_attributes_abc123_id';
var result = original.split('_')[3];
Try this:
var myArray = myString.split("_");
alert(myArray[3]);
use split method of javascript and then use 2nd last index you will have your required data.