I have the following line
'passenger (2.2.5, 2.0.6)'.match(//)[0]
which obviously doesn't match anything yet
I want to return the just the content of (2.2.5, so everything after the open parentheses and before the comma.
How would I do this?
|
|
Beanish solution fails on more than 2 version numbers, you should use something like:
|
|||||||||||||||||
|
if you use the $1 element it is the group that is found within the ( ) |
|||||||||||
|
|
|||
|
|