I have the following string: pass[1][2011-08-21][total_passes]
How would I extract the items between the square brackets into an array? I tried
match(/\[(.*?)\]/);
but this only returns [1].
Not sure how to do this.. Thanks in advance.
|
I have the following string: How would I extract the items between the square brackets into an array? I tried
but this only returns Not sure how to do this.. Thanks in advance. |
|||
|
|
|
You are almost there, you just need a global match (note the
Example: http://jsfiddle.net/kobi/Rbdj4/ If you want something the only captures the group (from MDN):
Example: http://jsfiddle.net/kobi/6a7XN/ Another option (which I usually prefer), is abusing the replace callback:
Example: http://jsfiddle.net/kobi/6CEzP/ |
||||
|
|
|
|||
|
|
|
add the global flag to your regex , and iterate the array returned .
|
|||
|
|
|
[C#]
you can use foreach for matched strings. |
|||
|
|
|
I'm not sure if you can get this directly into an array. But the following code should work to find all occurences and then process them:
Please note: i really think you need the character class [^\]] here. Otherwise in my test the expression would match the hole string because ] is also matches by .*. |
|||
|
|