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

4 Answers 4

Reset to default 7

You 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