-
Notifications
You must be signed in to change notification settings - Fork 26
/
slices.go
90 lines (74 loc) · 2.65 KB
/
slices.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package main
import (
"fmt"
"io/ioutil"
"regexp"
)
var digitRegexp = regexp.MustCompile("[0-9]+")
// FindDigits find digits in file in a consistent way
func FindDigits(filename string) []byte {
b, _ := ioutil.ReadFile(filename)
b = digitRegexp.Find(b)
c := make([]byte, len(b))
c = append(c, b...)
return digitRegexp.Find(b)
}
// Slices describe slices type for golang
func Slices() {
// Unlike arrays, slices are typed only by the elements they contain (not the number of elements).
// To create an empty slice with non-zero length, use the builtin make.
// Here we make a slice of strings of length 3 (initially zero-valued).
s := make([]string, 3)
fmt.Println("emp:", s)
// We can set and get just like with arrays.
s[0] = "a"
s[1] = "b"
s[2] = "c"
fmt.Println("set: ", s)
fmt.Println("get: ", s[2])
// len returns the length of the slice as expected.
fmt.Println("len: ", len(s))
// In addition to these basic operations, slices support several more that make them richer than arrays.
// One is the builtin append, which returns a slice containing one or more new values.
// Note that we need to accept a return value from append as we may get a new slice value.
s = append(s, "d")
s = append(s, "e", "f")
fmt.Println("apd: ", s)
// Slices can also be copy’d.
// Here we create an empty slice c of the same length as s and copy into c from s.
c := make([]string, len(s))
copy(c, s)
fmt.Println("cpy: ", c)
// Slices support a “slice” operator with the syntax slice[low:high].
// For example, this gets a slice of the elements s[2], s[3], and s[4].
l := s[2:5]
fmt.Println("sl1: ", l)
// This slices up to (but excluding) s[5].
l = s[:5]
fmt.Println("sl2: ", l)
// And this slices up from (and including) s[2].
l = s[2:]
fmt.Println("sl3: ", l)
// We can declare and initialize a variable for slice in a single line as well.
t := []string{"g", "h", "i"}
fmt.Println("dcl: ", t)
// Slices can be composed into multi-dimensional data structures.
// The length of the inner slices can vary, unlike with multi-dimensional arrays.
twoD := make([][]int, 3)
for i := 0; i < 3; i++ {
innerLen := i + 1
twoD[i] = make([]int, innerLen)
for j := 0; j < innerLen; j++ {
twoD[i][j] = i + j
}
}
fmt.Println("2d: ", twoD)
// To append one slice to another, use ... to expand the second argument to a list of arguments.
a := []string{"Ismail", "BahaEddine"}
b := []string{"Pogba", "Mane"}
a = append(a, b...) // equivalent to "append(a, b[0], b[1], b[2])"
fmt.Println("append 2 slices: ", a)
// Some gotcha
// http://blog.golang.org/2011/01/go-slices-usage-and-internals.html
fmt.Println("found digits: ", FindDigits("./file.txt"))
}