diff --git a/fsh-csv.cabal b/fsh-csv.cabal
--- a/fsh-csv.cabal
+++ b/fsh-csv.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                fsh-csv
-version:             0.1.0.0
+version:             0.2.0.0
 synopsis:            csv parser for fsh
 description:         This is a csv parser for fsh. To use this parser, use the -p flag and pass 'csv' as argument
 license:             MIT
diff --git a/src/FSH_CSV.hs b/src/FSH_CSV.hs
--- a/src/FSH_CSV.hs
+++ b/src/FSH_CSV.hs
@@ -62,6 +62,13 @@
 parse :: [[Char]] -> [Char]
 parse = mapBraces.mapQuotes.mapLines
 
+clean :: (String, [[String]]) -> [String]
+clean (header,output) = 
+  cleanedOutput
+  where 
+    outputMatrix = getWords header : output
+    cleanedOutput = map (intercalate ",") outputMatrix 
+
 --- END TRANSFORMING
 
 --- EXECUTING
