I'm pretty bad with regex... well I'm learning that is :)
I have the following line (which needs a regex guru's help):
'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?