package
0.4.7
Repository: https://github.com/eavesmy/golang-lib.git
Documentation: pkg.go.dev

# README

CSV handler For golang.

Install

go get github.com/zdy23216340/golang-csv

Usage

Is very simple.

package main

import "github.com/zdy23216340/golang-csv"
import "fmt"

func main(){

	myCsv := csv.New()
	content := myCsv.WriteTitle([]string{"id","name","age"}).WriteRow([]string{"1","John","35"}).String()//.ToFile("./a.csv") 
	fmt.Println(content)
	// Then you can write to file.

	myLocalCsv := csv.Read("./a.csv")
}

# Functions

No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author