Skip to content

Instantly share code, notes, and snippets.

@geelen
Created December 1, 2009 08:19
Show Gist options
  • Save geelen/246160 to your computer and use it in GitHub Desktop.
Save geelen/246160 to your computer and use it in GitHub Desktop.
>> @delimeter
=> ","
>> "\"two three\", four".match /(.*)",(.*)/
=> #<MatchData "\"two three\", four" 1:"\"two three" 2:" four">
>> "\"two three\", four".match /(.*)"#{@delimiter}(.*)/
=> #<MatchData "\"two three\", four" 1:"\"two three" 2:", four">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment