mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-10 20:28:12 +00:00
30 lines
779 B
Go
30 lines
779 B
Go
package textseg
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
)
|
|
|
|
// AllTokens is a utility that uses a bufio.SplitFunc to produce a slice of
|
|
// all of the recognized tokens in the given buffer.
|
|
func AllTokens(buf []byte, splitFunc bufio.SplitFunc) ([][]byte, error) {
|
|
scanner := bufio.NewScanner(bytes.NewReader(buf))
|
|
scanner.Split(splitFunc)
|
|
var ret [][]byte
|
|
for scanner.Scan() {
|
|
ret = append(ret, scanner.Bytes())
|
|
}
|
|
return ret, scanner.Err()
|
|
}
|
|
|
|
// TokenCount is a utility that uses a bufio.SplitFunc to count the number of
|
|
// recognized tokens in the given buffer.
|
|
func TokenCount(buf []byte, splitFunc bufio.SplitFunc) (int, error) {
|
|
scanner := bufio.NewScanner(bytes.NewReader(buf))
|
|
scanner.Split(splitFunc)
|
|
var ret int
|
|
for scanner.Scan() {
|
|
ret++
|
|
}
|
|
return ret, scanner.Err()
|
|
}
|