1
vote
How can I join lines in a CSV file when one of the fields has a newline?
This might be too simple (or not handle the general case well enough),
def input = """foo,bar,n
,a,bc,d
one,two,three
,a,bc,d"""
def last
input.eachLine {
if(it.startsWith(',') …
