Re: [go-nuts] Wordbreak and word extraction in Go?

2016-09-29 Thread 'Ingo Oeser' via golang-nuts
thx Marcel, filed an issue here: https://github.com/golang/go/issues/17256 if you could outline a possible designe there, that would be great. On Thursday, September 22, 2016 at 5:51:48 PM UTC+2, Marcel van Lohuizen wrote: > > Hi Ingo, > > Thanks for your interest in x/text! Text segmentation

Re: [go-nuts] Wordbreak and word extraction in Go?

2016-09-22 Thread mpvl
Hi Ingo, Thanks for your interest in x/text! Text segmentation is high on the priority list for x/text, but not yet implemented. Indeed, x/text/cases implements a (close) approximation of Annex #29 optimized for title casing, but it is not the full thing. For now, if your main interest is word

Re: [go-nuts] Wordbreak and word extraction in Go?

2016-09-20 Thread 'Ingo Oeser' via golang-nuts
Thanks for the suggestion, but I am looking for an implementation of http://unicode.org/reports/tr29/ -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [go-nuts] Wordbreak and word extraction in Go?

2016-09-20 Thread Shawn Milochik
How about strings.Fields? https://golang.org/pkg/strings/#Fields -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For