blob: e31bbc27efd5d484fcb44deebb9914b7190db4f2 (
plain)
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
|
type t = Basis.string
val length = Basis.strlen
val append = Basis.strcat
val sub = Basis.strsub
val suffix = Basis.strsuffix
val index = Basis.strindex
val atFirst = Basis.strchr
fun mindex {Haystack = s, Needle = chs} = Basis.strcspn s chs
fun substring s {Start = start, Len = len} = Basis.substring s start len
fun split s ch =
case index s ch of
None => None
| Some i => Some (substring s {Start = 0, Len = i},
substring s {Start = i + 1, Len = length s - i - 1})
fun msplit {Haystack = s, Needle = chs} =
case mindex {Haystack = s, Needle = chs} of
None => None
| Some i => Some (substring s {Start = 0, Len = i},
sub s i,
substring s {Start = i + 1, Len = length s - i - 1})
|