最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Get part of string? - Stack Overflow

programmeradmin3浏览0评论

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 badges
Add a ment  | 

3 Answers 3

Reset to default 7

If 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.

发布评论

评论列表(0)

  1. 暂无评论