Created
February 7, 2025 17:22
-
-
Save ppazos/b26ba76236d55c5ce1bb5e8785079ab0 to your computer and use it in GitHub Desktop.
Parse simple CSV in groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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