Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Propose adding a delimeter to Column() #180

Open
rmasci opened this issue Aug 4, 2023 · 10 comments
Open

Propose adding a delimeter to Column() #180

rmasci opened this issue Aug 4, 2023 · 10 comments

Comments

@rmasci
Copy link

rmasci commented Aug 4, 2023

Right now Columns takes an int, and uses strings.Fields to split the line. I'd like to propose we add a delimiter, so that you could parse csv, semicolon, or pipe delimited files. The function would look like this:

func (p *Pipe) Column(col int, d ...string) *Pipe {
	var delim string
	if len(d) > 0 {
		delim = d[0]
	}
	return p.FilterScan(func(line string, w io.Writer) {
		var columns []string
		if delim == "" {
			columns = strings.Fields(line)
		} else {
			columns = strings.Split(line, delim)
		}
		if col > 0 && col <= len(columns) {
			fmt.Fprintln(w, columns[col-1])
		}
	})
}

d is a ...string means it takes 0 or more arguments, so if the user doesn't pass anything it still works maintaining compatibility with existing programs
Ex:

script.Exec(`echo "one two three"`).Columns(2).Stdout()

would still print 2. However

script.Exec(`echo "one,two,three"`).Columns(2, ",").Stdout() 

Would also print 2
Sort of a simple change, and it works for a case where I want to parse through comma separated lines. While I think it works, I might not be thinking of a use case where it would break existing code.

@DioBr4nd0
Copy link

Hey @rmasci Can I work on this issue?

@bitfield
Copy link
Owner

bitfield commented Sep 6, 2024

What about something like:

script.File("data.csv").Fields(",").Columns(1, 3, 9).Stdout()

@DioBr4nd0
Copy link

DioBr4nd0 commented Sep 7, 2024

sounds nice to me if we can extend it to CSVs along with strings, Should I start working on it ?

@rmasci
Copy link
Author

rmasci commented Sep 7, 2024 via email

@rmasci
Copy link
Author

rmasci commented Sep 7, 2024 via email

@bitfield
Copy link
Owner

bitfield commented Sep 8, 2024

Very cool! I'm inspired by nushell to think we should have more data-analysis capabilities like this in script. I don't have any concrete suggestions to make at the moment though. Some use cases would be welcome.

@curio77
Copy link

curio77 commented Dec 31, 2024

Just my two cents: How about making the delimiter variant a separate Method, like .ColumnsDelim()? And while having a variant taking a rune or string for the second argument is probably nice to have as an easy option, I'd like a .ColumnsRegexp(), too. 🙂

@bitfield
Copy link
Owner

What about this suggested API, to separate the two concerns of parsing the fields and selecting the fields?

@curio77
Copy link

curio77 commented Dec 31, 2024

Sounds good, I guess this could/should then have variants for different types of delimiter definition mechanisms (string, regexp, maybe a func)? Speaking of which, having a func option would allow for the regexps I was wishing for to be handled inside that, too, alleviating the need to have a regexp variant.

@rmasci
Copy link
Author

rmasci commented Jan 1, 2025

I did this in my version of script. I asked at the time if you wanted a pull request but didn't hear anything. This is my version on go.doc:
https://pkg.go.dev/github.com/rmasci/script@v0.9.0#Pipe.Fields

script.File("sample.csv").Fields(",", ",", 2, 4).Stdout() //.Table()

[08:23 PM rmasci@Richs-Mac-mini ~/go/scriptcsv] $ go run main.go
Abbreviation,Numeric-2
Mon,01
Tue,02
Wed,03
Thu,04
Fri,05
Sat,06
Sun,07

If you replacer .Stdout with .Table() function it formats it for you.
https://pkg.go.dev/github.com/rmasci/script@v0.9.0#Pipe.Table

$ go run main.go
+-----------------+--------------+
|   Abbreviation  |   Numeric-2  |
+=================+==============+
|       Mon       |      01      |
|       Tue       |      02      |
|       Wed       |      03      |
|       Thu       |      04      |
|       Fri       |      05      |
|       Sat       |      06      |
|       Sun       |      07      |
+-----------------+--------------+

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants