Skip to content

Instantly share code, notes, and snippets.

@ppazos
Created February 7, 2025 17:22
Show Gist options
  • Save ppazos/b26ba76236d55c5ce1bb5e8785079ab0 to your computer and use it in GitHub Desktop.
Save ppazos/b26ba76236d55c5ce1bb5e8785079ab0 to your computer and use it in GitHub Desktop.
Parse simple CSV in groovy
// CSV is simple means it doesn't include commas so there is no value separator like " inside the CSV
// Though we take into account there could be spaces after the commas and before the values, and those are removed
// Though the spaces after the values are not removed so "a , b" would be parsed as ["a ", "b"]
def b = "a, b b, c c c"
b = b.replaceAll(",( )*", ",")
println b
def r = b.split(",")
r.each { println "'"+ it +"'" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment