What I want is [["def,"], ["ghi,"], ["jkl,"]] (or the same thing
without the commas), and I still need a way to achieve this. I can
accomplish it with:
But this does two operations where it seems like one should suffice.
Does someone know of a way to do this in a single operation?
Back to the odd behavior, the first expression actually returns
[["jkl,"]]. I can't figure out how that is the correct answer by any
reasonable definition of "scan". However, the equivalent String#match
does the same kind of thing, so I must be missing something. Can
someone please explain this behavior?
What I want is [["def,"], ["ghi,"], ["jkl,"]] (or the same thing
without the commas), and I still need a way to achieve this. I can
accomplish it with:
I don't know of a way to accomplish it in one step. String#scan attempts to match the whole regex at multiple places within the string; but you need the START and END to delimit the substring over which scan operates.
Back to the odd behavior, the first expression actually returns
[["jkl,"]]. I can't figure out how that is the correct answer by any
reasonable definition of "scan". However, the equivalent String#match
does the same kind of thing, so I must be missing something. Can
someone please explain this behavior?
Because you have this:
([^,]*,)*
The final * allows the group to match multiple times. The MatchData will hold only the last match however, which is "jkl,".