admin管理员组文章数量:1352000
I am trying to build a regular expression that returns everything after the last ma in a ma separated list.
// So if my list is as followed
var tag_string = "red, green, blue";
// Then my match function would return
var last_tag = tag_string.match(A_REGEX_I_CANNOT_FIGURE_OUT_YET);
// Then in last tag I should have access to blue
// I have tried the following things:
var last_tag = tag_string.match(",\*");
// I have seen similar solutions, but I cannot figure out how to get the only the last string after the last ma.
I am trying to build a regular expression that returns everything after the last ma in a ma separated list.
// So if my list is as followed
var tag_string = "red, green, blue";
// Then my match function would return
var last_tag = tag_string.match(A_REGEX_I_CANNOT_FIGURE_OUT_YET);
// Then in last tag I should have access to blue
// I have tried the following things:
var last_tag = tag_string.match(",\*");
// I have seen similar solutions, but I cannot figure out how to get the only the last string after the last ma.
Share
Improve this question
edited Nov 20, 2014 at 5:27
Mehrad
4,2035 gold badges45 silver badges63 bronze badges
asked Sep 11, 2013 at 18:10
usumoiousumoio
3,5686 gold badges35 silver badges58 bronze badges
1
-
Could also use
split()
: jsfiddle/VCNpQ – powerbuoy Commented Sep 11, 2013 at 18:23
4 Answers
Reset to default 7You can try something like:
var last_tag = tag_string.match("[^,]+$").trim();
This will first get " blue"
then remove the trailing spaces.
([^,]+)$
Edit live on Debuggex
[^,]+$
seems to do the trick. It matches blue
.
tag_string.match(/[^,\s]+$/)
=> [ 'blue', index: 12, input: 'red, green, blue' ]
Thats it :)
本文标签: javascriptRegular Expression for last value in comma separated listStack Overflow
版权声明:本文标题:javascript - Regular Expression for last value in comma separated list - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743868667a2553057.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论