The regular expression I am looking for have to be able to deal with different patterns.
Those are the 3 different patterns.
"10.1234/altetric55,Awesome Steel Chair,1011-2513"
"\"Sporer, Kihn and Turner\",2885-6503"
"Bartell-Collins,1167-8230"
I will have to pass this regular expression to a ruby split method.
line.split(/regular_expression/)
The idea is to split the test when there is a comma except (like in the second expression) if the comma is part of the text
thanks