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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
module Re = Core
type regexp =
{ re: Re.t
; mtch: Re.re Lazy.t
; srch: Re.re Lazy.t }
let compile_regexp s c =
let re = Emacs.re ~case:(not c) s in
{ re
; mtch = lazy (Re.compile (Re.seq [Re.start; re]))
; srch = lazy (Re.compile re) }
let state = ref None
let string_match re s p =
try
state := Some (Re.exec ~pos:p (Lazy.force re.mtch) s);
true
with Not_found ->
state := None;
false
let string_partial_match re s p =
match
Re.exec_partial ~pos:p (Lazy.force re.mtch) s
with
`Full -> string_match re s p
| `Partial -> true
| `Mismatch -> false
let search_forward re s p =
try
let res = Re.exec ~pos:p (Lazy.force re.srch) s in
state := Some res;
fst (Re.Group.offset res 0)
with Not_found ->
state := None;
raise Not_found
let rec search_backward re s p =
try
let res = Re.exec ~pos:p (Lazy.force re.mtch) s in
state := Some res;
p
with Not_found ->
state := None;
if p = 0 then
raise Not_found
else
search_backward re s (p - 1)
let valid_group n =
n >= 0 && n < 10 && (
match !state with
| None -> false
| Some m -> n < Re.Group.nb_groups m
)
let offset_group i =
match !state with
| Some m -> Re.Group.offset m i
| None -> raise Not_found
let group_len i =
try
let (b, e) = offset_group i in
e - b
with Not_found ->
0
let rec repl_length repl p q len =
if p < len then begin
if repl.[p] <> '\\' then
repl_length repl (p + 1) (q + 1) len
else begin
let p = p + 1 in
if p = len then failwith "Str.replace: illegal backslash sequence";
let q =
match repl.[p] with
| '\\' -> q + 1
| '0' .. '9' as c -> q + group_len (Char.code c - Char.code '0')
| _ -> q + 2 in
repl_length repl (p + 1) q len
end
end else
q
let rec replace orig repl p res q len =
if p < len then begin
let c = repl.[p] in
if c <> '\\' then begin
Bytes.set res q c;
replace orig repl (p + 1) res (q + 1) len
end else begin
match repl.[p + 1] with
'\\' ->
Bytes.set res q '\\';
replace orig repl (p + 2) res (q + 1) len
| '0' .. '9' as c ->
let d =
try
let (b, e) = offset_group (Char.code c - Char.code '0') in
let d = e - b in
if d > 0 then String.blit orig b res q d;
d
with Not_found ->
0
in
replace orig repl (p + 2) res (q + d) len
| c ->
Bytes.set res q '\\';
Bytes.set res (q + 1) c;
replace orig repl (p + 2) res (q + 2) len
end
end
let replacement_text repl orig =
let len = String.length repl in
let res = Bytes.create (repl_length repl 0 0 len) in
replace orig repl 0 res 0 (String.length repl);
Bytes.unsafe_to_string res
let quote s =
let len = String.length s in
let buf = Buffer.create (2 * len) in
for i = 0 to len - 1 do
match s.[i] with
'[' | ']' | '*' | '.' | '\\' | '?' | '+' | '^' | '$' as c ->
Buffer.add_char buf '\\';
Buffer.add_char buf c
| c -> Buffer.add_char buf c
done;
Buffer.contents buf
let string_before s n = String.sub s 0 n
let string_after s n = String.sub s n (String.length s - n)
let first_chars s n = String.sub s 0 n
let last_chars s n = String.sub s (String.length s - n) n
let regexp e = compile_regexp e false
let regexp_case_fold e = compile_regexp e true
let regexp_string s = compile_regexp (quote s) false
let regexp_string_case_fold s = compile_regexp (quote s) true
let group_beginning n =
if not (valid_group n) then invalid_arg "Str.group_beginning";
let pos = fst (offset_group n) in
if pos = -1 then
raise Not_found
else
pos
let group_end n =
if not (valid_group n) then invalid_arg "Str.group_end";
let pos = snd (offset_group n) in
if pos = -1 then
raise Not_found
else
pos
let matched_group n txt =
let (b, e) = offset_group n in
String.sub txt b (e - b)
let replace_matched repl matched = replacement_text repl matched
let match_beginning () = group_beginning 0
and match_end () = group_end 0
and matched_string txt = matched_group 0 txt
let substitute_first expr repl_fun text =
try
let pos = search_forward expr text 0 in
String.concat "" [string_before text pos;
repl_fun text;
string_after text (match_end ())]
with Not_found ->
text
let global_substitute expr repl_fun text =
let rec replace accu start last_was_empty =
let startpos = if last_was_empty then start + 1 else start in
if startpos > String.length text then
(string_after text start) :: accu
else
match search_forward expr text startpos with
| pos ->
let end_pos = match_end () in
let repl_text = repl_fun text in
replace (repl_text :: String.sub text start (pos-start) :: accu)
end_pos (end_pos = pos)
| exception Not_found -> (string_after text start) :: accu
in
String.concat "" (List.rev (replace [] 0 false))
let global_replace expr repl text =
global_substitute expr (replacement_text repl) text
and replace_first expr repl text =
substitute_first expr (replacement_text repl) text
let search_forward_progress re s p =
let pos = search_forward re s p in
if match_end () > p then
pos
else if p < String.length s then
search_forward re s (p + 1)
else
raise Not_found
let bounded_split expr text num =
let start =
if string_match expr text 0 then match_end () else 0 in
let rec split accu start n =
if start >= String.length text then
accu
else if n = 1 then
(string_after text start) :: accu
else
try
let pos = search_forward_progress expr text start in
split ((String.sub text start (pos-start)) :: accu)
(match_end ()) (n - 1)
with Not_found ->
(string_after text start) :: accu in
List.rev (split [] start num)
let split expr text = bounded_split expr text 0
let bounded_split_delim expr text num =
let rec split accu start n =
if start > String.length text then
accu
else if n = 1 then
(string_after text start) :: accu
else
try
let pos = search_forward_progress expr text start in
split (String.sub text start (pos-start) :: accu)
(match_end ()) (n - 1)
with Not_found ->
(string_after text start) :: accu in
if text = "" then
[]
else
List.rev (split [] 0 num)
let split_delim expr text = bounded_split_delim expr text 0
type split_result = Text of string | Delim of string
let bounded_full_split expr text num =
let rec split accu start n =
if start >= String.length text then
accu
else if n = 1 then
Text (string_after text start) :: accu
else
try
let pos = search_forward_progress expr text start in
let s = matched_string text in
if pos > start then
split (Delim (s) ::
Text (String.sub text start (pos - start)) ::
accu)
(match_end ()) (n - 1)
else
split (Delim (s) :: accu)
(match_end ()) (n - 1)
with Not_found ->
Text (string_after text start) :: accu in
List.rev (split [] 0 num)
let full_split expr text = bounded_full_split expr text 0