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
|
use std
const main = {
var b : byte[:][6]
/* dynamic str split */
check(std.strsplit("", ","), [][:])
check(std.strsplit("a,b,c ,,d,", ","), \
["a", "b", "c ", "", "d", ""][:])
check(std.strsplit("a,b,c ,,d,", ","), \
["a", "b", "c ", "", "d", ""][:])
/* buffered str split */
check(std.bstrsplit(b[:], "a,b", ","), \
["a", "b"][:])
check(std.bstrsplit(b[:], "a,b,c ,,d,", ","), \
["a", "b", "c ", "", "d", ""][:])
check(std.bstrsplit(b[:], "a,b,c,d,e,f,g,h", ","), \
["a", "b", "c", "d", "e", "f,g,h",][:])
/* tokenizing */
check(std.strtok(""), [][:])
check(std.strtok(" "), [][:])
check(std.strtok("\t"), [][:])
check(std.strtok("a b c\td"), ["a", "b", "c", "d"][:])
/* buffered tokenizing */
check(std.bstrtok(b[:], "a b c\td"), ["a", "b", "c", "d"][:])
check(std.bstrtok(b[:2], "a b c\td"), ["a", "b c\td"][:])
check(std.bstrtok(b[:2], "a b c\td "), ["a", "b c\td"][:])
}
const check = {a, b
if a.len != b.len
std.fatal("a = {}, b = {}\n", a, b)
std.fatal("length mismatch: {} != {}: {}\n", a.len, b.len)
;;
for var i = 0; i < a.len; i++
if !std.sleq(a[i], b[i])
std.fatal("element {} mismatched: '{}' != '{}'\n", i, a[i], b[i])
;;
;;
}
|