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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
open Ast
(* Helper: Unary Vectorization *)
let vectorize_unary op args env =
match args with
| [Ast.VVector arr] ->
Ast.VVector (Array.map (fun v ->
match op [v] env with
| Ast.VError _ as e -> e
| res -> res
) arr)
| [Ast.VList items] ->
Ast.VList (List.map (fun (name, v) ->
(name, match op [v] env with Ast.VError _ as e -> e | res -> res)
) items)
| _ -> op args env
(* Helper: Binary Vectorization *)
let vectorize_binary op args env =
match args with
| [Ast.VVector arr1; Ast.VVector arr2] ->
if Array.length arr1 <> Array.length arr2 then
Error.broadcast_length_error (Array.length arr1) (Array.length arr2)
else
Ast.VVector (Array.map2 (fun v1 v2 -> op [v1; v2] env) arr1 arr2)
| [Ast.VVector arr1; val2] ->
Ast.VVector (Array.map (fun v1 -> op [v1; val2] env) arr1)
| [val1; Ast.VVector arr2] ->
Ast.VVector (Array.map (fun v2 -> op [val1; v2] env) arr2)
| [Ast.VList l1; Ast.VList l2] ->
if List.length l1 <> List.length l2 then
Error.broadcast_length_error (List.length l1) (List.length l2)
else
Ast.VList (List.map2 (fun (n1, v1) (n2, v2) ->
let name = match n1, n2 with Some s, _ -> Some s | _, Some s -> Some s | _ -> None in
(name, op [v1; v2] env)
) l1 l2)
| [Ast.VList l1; val2] ->
Ast.VList (List.map (fun (n, v1) -> (n, op [v1; val2] env)) l1)
| [val1; Ast.VList l2] ->
Ast.VList (List.map (fun (n, v2) -> (n, op [val1; v2] env)) l2)
| _ -> op args env
(* Helper: Ternary Vectorization *)
let vectorize_ternary op args env =
match args with
| [Ast.VVector arr1; Ast.VVector arr2; Ast.VVector arr3] ->
let len = Array.length arr1 in
if Array.length arr2 <> len || Array.length arr3 <> len then
Error.value_error "Vector length mismatch in ternary operation."
else
Ast.VVector (Array.init len (fun i -> op [arr1.(i); arr2.(i); arr3.(i)] env))
| [Ast.VVector arr1; val2; val3] ->
Ast.VVector (Array.map (fun v1 -> op [v1; val2; val3] env) arr1)
| [Ast.VList l1; val2; val3] ->
Ast.VList (List.map (fun (n, v1) -> (n, op [v1; val2; val3] env)) l1)
| _ -> op args env
(* Implementations *)
let is_empty_scalar args _env =
match args with
| [VString s] -> VBool (String.length s = 0)
| _ -> Error.type_error "is_empty expects a string."
let is_empty_impl args env = vectorize_unary is_empty_scalar args env
let substring_scalar args _env =
match args with
| [VString s; VInt start; VInt end_] ->
let len = String.length s in
if start < 0 || end_ > len || start > end_ then
Error.value_error "Invalid substring indices."
else
VString (String.sub s start (end_ - start))
| _ -> Error.type_error "str_substring expects (string, int, int)."
let substring_impl args env = vectorize_ternary substring_scalar args env
let char_at_scalar args _env =
match args with
| [VString s; VInt i] ->
let len = String.length s in
if i < 0 || i >= len then
Error.value_error "Index out of bounds."
else
VString (String.make 1 (String.get s i))
| _ -> Error.type_error "char_at expects (string, int)."
let char_at_impl args env = vectorize_binary char_at_scalar args env
let index_of_scalar args _env =
match args with
| [VString s; VString sub] ->
let rec find i =
try
let idx = String.index_from s i (String.get sub 0) in
if String.length sub + idx > String.length s then -1
else if String.sub s idx (String.length sub) = sub then idx
else find (idx + 1)
with Not_found -> -1
in
if sub = "" then VInt 0 else VInt (find 0)
| _ -> Error.type_error "index_of expects (string, string)."
let index_of_impl args env = vectorize_binary index_of_scalar args env
let last_index_of_scalar args _env =
match args with
| [VString s; VString sub] ->
let sub_len = String.length sub in
let s_len = String.length s in
if sub_len > s_len then VInt (-1)
else if sub = "" then VInt s_len
else
let rec find i =
if i < 0 then -1
else if String.sub s i sub_len = sub then i
else find (i - 1)
in
VInt (find (s_len - sub_len))
| _ -> Error.type_error "last_index_of expects (string, string)."
let last_index_of_impl args env = vectorize_binary last_index_of_scalar args env
let contains_scalar args env =
match args with
| [VString _; VString _] ->
let index_val = index_of_scalar args env in
(match index_val with
| VInt i -> VBool (i >= 0)
| _ -> index_val)
| _ -> Error.type_error "contains expects (string, string)."
let contains_impl args env = vectorize_binary contains_scalar args env
let starts_with_scalar args _env =
match args with
| [VString s; VString prefix] ->
VBool (String.starts_with ~prefix s)
| _ -> Error.type_error "starts_with expects (string, string)."
let starts_with_impl args env = vectorize_binary starts_with_scalar args env
let ends_with_scalar args _env =
match args with
| [VString s; VString suffix] ->
VBool (String.ends_with ~suffix s)
| _ -> Error.type_error "ends_with expects (string, string)."
let ends_with_impl args env = vectorize_binary ends_with_scalar args env
let replace_scalar args _env =
match args with
| [VString s; VString old; VString new_] ->
let regex = Str.regexp_string old in
VString (Str.global_replace regex new_ s)
| _ -> Error.type_error "str_replace expects (string, string, string)."
let replace_impl args env = vectorize_ternary replace_scalar args env
let replace_first_scalar args _env =
match args with
| [VString s; VString old; VString new_] ->
let regex = Str.regexp_string old in
VString (Str.replace_first regex new_ s)
| _ -> Error.type_error "replace_first expects (string, string, string)."
let replace_first_impl args env = vectorize_ternary replace_first_scalar args env
let to_lower_scalar args _env =
match args with
| [VString s] -> VString (String.lowercase_ascii s)
| _ -> Error.type_error "to_lower expects a string."
let to_lower_impl args env = vectorize_unary to_lower_scalar args env
let to_upper_scalar args _env =
match args with
| [VString s] -> VString (String.uppercase_ascii s)
| _ -> Error.type_error "to_upper expects a string."
let to_upper_impl args env = vectorize_unary to_upper_scalar args env
(* Helper used by trim_start and trim_end — not exported *)
let ltrim s =
let len = String.length s in
if len = 0 then s
else
let i = ref 0 in
while !i < len && (s.[!i] = ' ' || s.[!i] = '\t' || s.[!i] = '\n' || s.[!i] = '\r') do
incr i
done;
String.sub s !i (len - !i)
let rtrim s =
let len = String.length s in
if len = 0 then s
else
let i = ref (len - 1) in
while !i >= 0 && (s.[!i] = ' ' || s.[!i] = '\t' || s.[!i] = '\n' || s.[!i] = '\r') do
decr i
done;
String.sub s 0 (!i + 1)
(* Pre-compiled regexes for lines/words — avoid recompiling on every call *)
let re_crlf = Str.regexp "\r\n"
let re_whitespace = Str.regexp "[ \t]+"
(*
--# Trim whitespace
--# Removes leading and trailing whitespace from a string. Vectorized.
--# @name str_trim
--# @param s :: String The string to trim.
--# @return :: String The trimmed string.
--# @family string
--# @export
*)
let trim_scalar args _env =
match args with
| [VString s] -> VString (String.trim s)
| _ -> Error.type_error "str_trim expects a String."
let trim_impl args env = vectorize_unary trim_scalar args env
(*
--# Trim leading whitespace
--# @name trim_start
--# @param s :: String
--# @return :: String
--# @family string
--# @export
*)
let trim_start_scalar args _env =
match args with
| [VString s] -> VString (ltrim s)
| _ -> Error.type_error "trim_start expects a String."
let trim_start_impl args env = vectorize_unary trim_start_scalar args env
(*
--# Trim trailing whitespace
--# @name trim_end
--# @param s :: String
--# @return :: String
--# @family string
--# @export
*)
let trim_end_scalar args _env =
match args with
| [VString s] -> VString (rtrim s)
| _ -> Error.type_error "trim_end expects a String."
let trim_end_impl args env = vectorize_unary trim_end_scalar args env
(*
--# Split string into lines
--# Splits on \n or \r\n. Strips trailing newline. Accepts ShellResult.
--# @name str_lines
--# @param s :: String | ShellResult
--# @return :: List[String]
--# @family string
--# @seealso str_words, str_split
--# @export
*)
let lines_impl args _env =
let do_lines s =
(* Normalise \r\n to \n before splitting *)
let normalised = Str.global_replace re_crlf "\n" s in
(* Strip a single trailing newline if present *)
let trimmed =
let len = String.length normalised in
if len > 0 && normalised.[len - 1] = '\n' then
String.sub normalised 0 (len - 1)
else normalised
in
let parts = String.split_on_char '\n' trimmed in
VList (List.map (fun line -> (None, VString line)) parts)
in
match args with
| [VString s] -> do_lines s
| [VShellResult { sr_stdout; _ }] -> do_lines sr_stdout
| [other] ->
Error.type_error
(Printf.sprintf "str_lines expects a String or ShellResult, got %s"
(Utils.type_name other))
| _ -> Error.arity_error_named "str_lines" 1 (List.length args)
(*
--# Split string into words
--# Splits on whitespace, collapsing consecutive spaces. Accepts ShellResult.
--# Note: words splits on spaces and tabs only, not newlines. For line-by-line
--# processing use str_lines() first, then str_words() on each line.
--# @name str_words
--# @param s :: String | ShellResult
--# @return :: List[String]
--# @family string
--# @seealso str_lines, str_split
--# @export
*)
let words_impl args _env =
let do_words s =
let trimmed = String.trim s in
if trimmed = "" then VList []
else
let parts = Str.split re_whitespace trimmed in
VList (List.map (fun w -> (None, VString w)) parts)
in
match args with
| [VString s] -> do_words s
| [VShellResult { sr_stdout; _ }] -> do_words sr_stdout
| [other] ->
Error.type_error
(Printf.sprintf "str_words expects a String or ShellResult, got %s"
(Utils.type_name other))
| _ -> Error.arity_error_named "str_words" 1 (List.length args)
(*
--# Repeat a string
--# @name str_repeat
--# @param s :: String The string to repeat.
--# @param n :: Int Number of repetitions.
--# @return :: String
--# @family string
--# @export
*)
let str_repeat_scalar args _env =
match args with
| [VString s; VInt n] ->
if n < 0 then
Error.value_error "str_repeat: count must be non-negative."
else
let slen = String.length s in
if slen > 0 && n > 10_000_000 / slen then
Error.value_error (Printf.sprintf "str_repeat: result would exceed safety limit of 10,000,000 characters.")
else
let total_len = slen * n in
let buf = Buffer.create total_len in
for _ = 1 to n do Buffer.add_string buf s done;
VString (Buffer.contents buf)
| _ -> Error.type_error "str_repeat expects (String, Int)."
let str_repeat_impl args env = vectorize_binary str_repeat_scalar args env
(*
--# Named string interpolation
--# Substitutes {name} placeholders using values from a Dict or named List.
--# Use {{ and }} to produce literal braces in the output.
--# @name str_format
--# @param fmt :: String The format string with {name} placeholders.
--# @param values :: Dict | List The named values to substitute.
--# @return :: String The formatted string.
--# @family string
--# @seealso str_sprintf
--# @export
*)
let str_format_impl args _env =
match args with
| [VString fmt; (VDict _ | VList _) as values] ->
let lookup =
match values with
| VDict d ->
List.map (fun (k, v) -> (k, Ast.Utils.value_to_raw_string v)) d
| VList items ->
List.filter_map (fun (name_opt, v) ->
match name_opt with
| Some k -> Some (k, Ast.Utils.value_to_raw_string v)
| None -> None
) items
| _ -> (* unreachable — guarded by outer match *) []
in
let len = String.length fmt in
let buf = Buffer.create len in
let i = ref 0 in
let result = ref None in
while !i < len && !result = None do
if fmt.[!i] = '{' then begin
(* {{ produces a literal { *)
if !i + 1 < len && fmt.[!i + 1] = '{' then begin
Buffer.add_char buf '{';
i := !i + 2
end else
(* Find closing brace for placeholder *)
match String.index_from_opt fmt (!i + 1) '}' with
| None ->
result := Some (Error.make_error ValueError
"str_format: unclosed '{' in format string.")
| Some j ->
let key = String.sub fmt (!i + 1) (j - !i - 1) in
(match List.assoc_opt key lookup with
| Some v -> Buffer.add_string buf v; i := j + 1
| None ->
result := Some (Error.make_error KeyError
(Printf.sprintf "str_format: no value provided for key '{%s}'." key)))
end else if fmt.[!i] = '}' && !i + 1 < len && fmt.[!i + 1] = '}' then begin
(* }} produces a literal } *)
Buffer.add_char buf '}';
i := !i + 2
end else begin
Buffer.add_char buf fmt.[!i];
incr i
end
done;
(match !result with
| Some err -> err
| None -> VString (Buffer.contents buf))
| [VString _; other] ->
Error.type_error
(Printf.sprintf "str_format expects a Dict or named List as the second argument, got %s"
(Utils.type_name other))
| _ -> Error.type_error "str_format expects (String, Dict) or (String, named List)."
let length_scalar args _env =
match args with
| [VString _] -> Error.type_error "length does not work on strings. Use str_nchar() to get the number of characters in a string."
| [VList items] -> VInt (List.length items)
| [VDict pairs] -> VInt (List.length pairs)
| [VVector arr] -> VInt (Array.length arr)
| [VDataFrame _] -> Error.type_error "length does not work on DataFrames because it is ambiguous (rows vs columns). Use nrow() or ncol() instead."
| [VInt _ | VFloat _ | VBool _] -> Error.type_error "length expects a collection (List, Vector, or Dict). Scalar provided."
| [VNA _] -> Error.type_error "Cannot get length of NA."
| [VError _ as e] -> e
| [v] -> Error.type_error (Printf.sprintf "length expects a collection (List, Vector, or Dict). Received %s" (Utils.type_name v))
| _ -> Error.type_error "length expects a collection (List, Vector, or Dict)."
let length_impl args env = length_scalar args env
let compile_regexp function_name pattern =
try Ok (Str.regexp pattern)
with Failure msg ->
Error (Error.value_error (Printf.sprintf "Function `%s` received an invalid regex: %s" function_name msg))
(* Prefer the first capture group when present; otherwise fall back to the
full regex match so plain patterns still behave intuitively. *)
let regex_match_value s =
try Str.matched_group 1 s with
| Invalid_argument _ | Not_found -> Str.matched_string s
let all_regex_matches re s =
let len = String.length s in
let rec loop pos acc =
if pos > len then
List.rev acc
else
match Str.search_forward re s pos with
| _ ->
let matched = regex_match_value s in
let end_pos = Str.match_end () in
let next_pos = if end_pos = pos then pos + 1 else end_pos in
loop next_pos (matched :: acc)
| exception Not_found -> List.rev acc
in
loop 0 []
let str_extract_scalar args _env =
match args with
| [VString s; VString pattern] ->
(match compile_regexp "str_extract" pattern with
| Error err -> err
| Ok re ->
(match Str.search_forward re s 0 with
| _ -> VString (regex_match_value s)
| exception Not_found -> VNA NAString))
| [VNA _; _] | [_; VNA _] -> VNA NAString
| _ -> Error.type_error "str_extract expects (String, String)."
let str_extract_impl args env = vectorize_binary str_extract_scalar args env
let str_extract_all_scalar args _env =
match args with
| [VString s; VString pattern] ->
(match compile_regexp "str_extract_all" pattern with
| Error err -> err
| Ok re ->
all_regex_matches re s
|> List.map (fun matched -> (None, VString matched))
|> fun items -> VList items)
| [VNA _; _] | [_; VNA _] -> VList []
| _ -> Error.type_error "str_extract_all expects (String, String)."
let str_extract_all_impl args env = vectorize_binary str_extract_all_scalar args env
let str_detect_scalar args _env =
match args with
| [VString s; VString pattern] ->
(match compile_regexp "str_detect" pattern with
| Error err -> err
| Ok re ->
(match Str.search_forward re s 0 with
| _ -> VBool true
| exception Not_found -> VBool false))
| [VNA _; _] | [_; VNA _] -> VNA NABool
| _ -> Error.type_error "str_detect expects (String, String)."
let str_detect_impl args env = vectorize_binary str_detect_scalar args env
let str_count_scalar args _env =
match args with
| [VString s; VString pattern] ->
(match compile_regexp "str_count" pattern with
| Error err -> err
| Ok re -> VInt (List.length (all_regex_matches re s)))
| [VNA _; _] | [_; VNA _] -> VNA NAInt
| _ -> Error.type_error "str_count expects (String, String)."
let str_count_impl args env = vectorize_binary str_count_scalar args env
let string_named_or_positional function_name name named_args position default =
let positional = List.filter_map (function None, v -> Some v | _ -> None) named_args in
match List.find_map (function Some n, v when n = name -> Some v | _ -> None) named_args with
| Some (VString s) -> Ok s
| Some v ->
Error
(Error.type_error
(Printf.sprintf "Argument `%s` to `%s` must be String, got %s."
name function_name (Utils.type_name v)))
| None ->
(match List.nth_opt positional position with
| Some (VString s) -> Ok s
| Some v ->
Error
(Error.type_error
(Printf.sprintf "Argument `%s` to `%s` must be String, got %s."
name function_name (Utils.type_name v)))
| None -> Ok default)
let repeat_to_length pad needed =
if needed <= 0 then ""
else
let pad_len = String.length pad in
let rec loop remaining acc =
if remaining <= 0 then
String.concat "" (List.rev acc)
else if remaining >= pad_len then
loop (remaining - pad_len) (pad :: acc)
else
loop 0 (String.sub pad 0 remaining :: acc)
in
loop needed []
let map_string_value function_name fn value =
let rec apply = function
| VVector arr -> VVector (Array.map apply arr)
| VList items -> VList (List.map (fun (name, item) -> (name, apply item)) items)
| VNA _ -> VNA NAString
| VString s -> fn s
| _ ->
Error.type_error
(Printf.sprintf "Function `%s` expects a String or Vector[String]." function_name)
in
apply value
let str_pad_impl named_args _env =
let positional = List.filter_map (function None, v -> Some v | _ -> None) named_args in
match positional with
| [value; VInt width]
| [value; VInt width; _]
| [value; VInt width; _; _] ->
(match string_named_or_positional "str_pad" "side" named_args 2 "left",
string_named_or_positional "str_pad" "pad" named_args 3 " " with
| Error err, _ | _, Error err -> err
| Ok side, Ok pad ->
if width < 0 then
Error.value_error "Function `str_pad` width must be non-negative."
else if pad = "" then
Error.value_error "Function `str_pad` pad must not be empty."
else
map_string_value "str_pad" (fun s ->
let len = String.length s in
if len >= width then
VString s
else
let needed = width - len in
let pad_text = repeat_to_length pad needed in
match side with
| "left" -> VString (pad_text ^ s)
| "right" -> VString (s ^ pad_text)
| "both" ->
let left = needed / 2 in
let right = needed - left in
VString (repeat_to_length pad left ^ s ^ repeat_to_length pad right)
| _ ->
Error.value_error
(Printf.sprintf "Function `str_pad` side must be \"left\", \"right\", or \"both\", got %S." side)
) value)
| [_; _] ->
Error.type_error "Function `str_pad` expects (String, Int, side = String, pad = String)."
| values -> Error.arity_error_named "str_pad" 2 (List.length values)
let str_trunc_impl named_args _env =
let positional = List.filter_map (function None, v -> Some v | _ -> None) named_args in
match positional with
| [value; VInt width]
| [value; VInt width; _]
| [value; VInt width; _; _] ->
(match string_named_or_positional "str_trunc" "side" named_args 2 "right",
string_named_or_positional "str_trunc" "ellipsis" named_args 3 "..." with
| Error err, _ | _, Error err -> err
| Ok side, Ok ellipsis ->
if width < 0 then
Error.value_error "Function `str_trunc` width must be non-negative."
else
map_string_value "str_trunc" (fun s ->
let len = String.length s in
if len <= width then
VString s
else if width <= String.length ellipsis then
VString (String.sub ellipsis 0 width)
else
let keep = width - String.length ellipsis in
match side with
| "right" -> VString (String.sub s 0 keep ^ ellipsis)
| "left" -> VString (ellipsis ^ String.sub s (len - keep) keep)
| "center" ->
let left_keep = keep / 2 in
let right_keep = keep - left_keep in
VString
(String.sub s 0 left_keep
^ ellipsis
^ String.sub s (len - right_keep) right_keep)
| _ ->
Error.value_error
(Printf.sprintf "Function `str_trunc` side must be \"left\", \"right\", or \"center\", got %S." side)
) value)
| [_; _] ->
Error.type_error "Function `str_trunc` expects (String, Int, side = String, ellipsis = String)."
| values -> Error.arity_error_named "str_trunc" 2 (List.length values)
let str_flatten_impl named_args _env =
let positional = List.filter_map (function None, v -> Some v | _ -> None) named_args in
match string_named_or_positional "str_flatten" "collapse" named_args 1 "" with
| Error err -> err
| Ok collapse ->
let flatten values =
values
|> List.map Ast.Utils.value_to_raw_string
|> String.concat collapse
|> fun s -> VString s
in
(match positional with
| [VVector arr] -> flatten (Array.to_list arr)
| [VList items] -> flatten (List.map snd items)
| [value] -> VString (Ast.Utils.value_to_raw_string value)
| values ->
Error.arity_error_named "str_flatten" 1 (List.length values))
let nchar_scalar args _env =
match args with
| [VString s] -> VInt (String.length s)
| _ -> Error.type_error "str_nchar expects a string."
let nchar_impl args env = vectorize_unary nchar_scalar args env
let sprintf_impl args _env =
match args with
| VString fmt :: vals ->
let len = String.length fmt in
let res = Buffer.create len in
let rec go i items =
if i >= len then
VString (Buffer.contents res)
else if fmt.[i] = '%' then
if i + 1 >= len then
Error.value_error "Incomplete format specifier at end of string."
else
match fmt.[i+1] with
| '%' -> Buffer.add_char res '%'; go (i + 2) items
| 's' | 'd' | 'f' ->
(match items with
| v :: rest ->
Buffer.add_string res (Ast.Utils.value_to_raw_string v);
go (i + 2) rest
| [] -> Error.value_error "Not enough arguments for format string.")
| c -> Error.value_error (Printf.sprintf "Unsupported format specifier: %%%c. Supported: %%s, %%d, %%f, %%%%" c)
else (
Buffer.add_char res fmt.[i];
go (i + 1) items
)
in
go 0 vals
| _ -> Error.type_error "str_sprintf expects a format string as the first argument."
let join_impl args _env =
match args with
| [VList items] ->
let strs = List.map (fun (_, v) -> Ast.Utils.value_to_raw_string v) items in
VString (String.concat "" strs)
| [VList items; VString sep] ->
let strs = List.map (fun (_, v) -> Ast.Utils.value_to_raw_string v) items in
VString (String.concat sep strs)
| [VVector arr] ->
let strs = Array.map Ast.Utils.value_to_raw_string arr |> Array.to_list in
VString (String.concat "" strs)
| [VVector arr; VString sep] ->
let strs = Array.map Ast.Utils.value_to_raw_string arr |> Array.to_list in
VString (String.concat sep strs)
| [val_] ->
VString (Ast.Utils.value_to_raw_string val_)
| [val_; VString _] ->
VString (Ast.Utils.value_to_raw_string val_)
| _ -> Error.type_error "Function `str_join` expects (list/vector, [separator]) or (value, [separator])."
let string_impl args _env =
match args with
| [v] -> VString (Ast.Utils.value_to_raw_string v)
| _ -> Error.type_error "Function `str_string` expects a single argument."
let strsplit_impl args _env =
let do_split s sep =
let parts =
if sep = "" then
List.init (String.length s) (fun i -> VString (String.make 1 s.[i]))
else if String.length sep = 1 then
List.map (fun p -> VString p) (String.split_on_char sep.[0] s)
else begin
let sep_len = String.length sep in
let s_len = String.length s in
let find_from start =
let rec find i =
if i + sep_len > s_len then None
else if String.sub s i sep_len = sep then Some i
else find (i + 1)
in find start
in
let rec loop acc start =
match find_from start with
| None -> List.rev (VString (String.sub s start (s_len - start)) :: acc)
| Some i -> loop (VString (String.sub s start (i - start)) :: acc) (i + sep_len)
in
loop [] 0
end
in
VList (List.map (fun v -> (None, v)) parts)
in
match args with
| [VString s; VString sep] -> do_split s sep
| [VShellResult { sr_stdout; _ }; VString sep] -> do_split sr_stdout sep
| [_; _] -> Error.type_error "Function `str_split` expects (String, String)."
| _ -> Error.arity_error_named "str_split" 2 (List.length args)
(*
--# Format a string
--#
--# Formats a string using C-style format specifiers.
--# Supports %s (string), %d (integer), %f (float), and %% (literal %).
--#
--# @name str_sprintf
--# @param fmt :: String The format string.
--# @param ... :: Any Values to substitute in the format string.
--# @return :: String The formatted string.
--# @example
--# str_sprintf("Hello, %s!", "world")
--# -- Returns = "Hello, world!"
--# str_sprintf("Value = %d", 42)
--# -- Returns: "Value = 42"
--# @family string
--# @export
*)
(*
--# Check if string is empty
--#
--# Returns true if the string has length 0.
--#
--# @name is_empty
--# @param s :: String The string to check.
--# @return :: Bool True if empty, false otherwise.
--# @family string
--# @export
*)
(*
--# Get character count
--#
--# Returns the number of characters in a string. Vectorized.
--#
--# @name str_nchar
--# @param x :: String | Vector[String] The input string(s).
--# @return :: Int | Vector[Int] The number of characters.
--# @family string
--# @export
*)
(*
--# Get length
--#
--# Returns the number of elements in a collection (List, Vector, Dict).
--# This function is NOT vectorized - it always returns the count of elements.
--# For getting the number of characters in a string, use str_nchar() instead.
--#
--# @name length
--# @param x :: List | Vector | Dict The collection to measure.
--# @return :: Int The number of elements.
--# @family core
--# @export
*)
(*
--# Extract substring
--#
--# Returns the part of the string between `start` and `end` indices.
--#
--# @name str_substring
--# @param s :: String The input string.
--# @param start :: Int The starting index (inclusive).
--# @param end :: Int The ending index (exclusive).
--# @return :: String The extracted substring.
--# @family string
--# @export
*)
(*
--# Extract slice
--#
--# Alias for `str_substring`. Returns the part of the string between `start` and `end` indices.
--#
--# @name slice
--# @param s :: String The input string.
--# @param start :: Int The starting index (inclusive).
--# @param end :: Int The ending index (exclusive).
--# @return :: String The extracted substring.
--# @family string
--# @export
*)
(*
--# Get character at index
--#
--# Returns a single-character string at the specified index.
--#
--# @name char_at
--# @param s :: String The input string.
--# @param i :: Int The index (0-based).
--# @return :: String The character at the index.
--# @family string
--# @export
*)
(*
--# Find index of substring
--#
--# Returns the index of the first occurrence of `sub` in `s`, or -1 if not found.
--#
--# @name index_of
--# @param s :: String The search string.
--# @param sub :: String The substring to find.
--# @return :: Int The index of the first occurrence.
--# @family string
--# @export
*)
(*
--# Find last index of substring
--#
--# Returns the index of the last occurrence of `sub` in `s`, or -1 if not found.
--#
--# @name last_index_of
--# @param s :: String The search string.
--# @param sub :: String The substring to find.
--# @return :: Int The index of the last occurrence.
--# @family string
--# @export
*)
(*
--# Check if string contains substring
--#
--# Returns true if `sub` is present in `s`.
--#
--# @name contains
--# @param s :: String The search string.
--# @param sub :: String The substring to find.
--# @return :: Bool True if found, false otherwise.
--# @family string
--# @export
*)
(*
--# Check if string starts with prefix
--#
--# Returns true if `s` starts with the specified `prefix`.
--#
--# @name starts_with
--# @param s :: String The string to check.
--# @param prefix :: String The prefix to look for.
--# @return :: Bool True if s starts with prefix.
--# @family string
--# @export
*)
(*
--# Check if string ends with suffix
--#
--# Returns true if `s` ends with the specified `suffix`.
--#
--# @name ends_with
--# @param s :: String The string to check.
--# @param suffix :: String The suffix to look for.
--# @return :: Bool True if s ends with suffix.
--# @family string
--# @export
*)
(*
--# Replace all occurrences
--#
--# Replaces all occurrences of `old` with `new_` in `s`.
--#
--# @name str_replace
--# @param s :: String The input string.
--# @param old :: String The substring to replace.
--# @param new_ :: String The replacement string.
--# @return :: String The modified string.
--# @family string
--# @export
*)
(*
--# Replace first occurrence
--#
--# Replaces only the first occurrence of `old` with `new_` in `s`.
--#
--# @name replace_first
--# @param s :: String The input string.
--# @param old :: String The substring to replace.
--# @param new_ :: String The replacement string.
--# @return :: String The modified string.
--# @family string
--# @export
*)
(*
--# Convert to lowercase
--#
--# Converts all characters in the string to lowercase.
--#
--# @name to_lower
--# @param s :: String The string to convert.
--# @return :: String The lowercase string.
--# @family string
--# @export
*)
(*
--# Convert to uppercase
--#
--# Converts all characters in the string to uppercase.
--#
--# @name to_upper
--# @param s :: String The string to convert.
--# @return :: String The uppercase string.
--# @family string
--# @export
*)
(*
--# Join strings with a separator
--#
--# Concatenates items of a List or Vector into a single string, separated by `sep`.
--#
--# @name str_join
--# @param items :: List | Vector The items to join.
--# @param sep :: String [Optional] The separator string. Defaults to "".
--# @return :: String The joined string.
--# @example
--# str_join(["a", "b", "c"], "-")
--# -- Returns = "a-b-c"
--# str_join(["a", "b", "c"])
--# -- Returns = "abc"
--# @family string
--# @seealso str_string
--# @export
*)
(*
--# Convert to string
--#
--# Converts any value to its string representation.
--#
--# @name str_string
--# @param x :: Any The value to convert.
--# @return :: String The string representation.
--# @example
--# str_string(123)
--# -- Returns = "123"
--# @family string
--# @seealso str_join
--# @export
*)
(*
--# Split a string on a delimiter
--#
--# Splits a string into a list of substrings on each occurrence of `sep`.
--# If `sep` is empty, splits into individual characters.
--# Works transparently on ShellResult values (splits stdout).
--#
--# @name str_split
--# @param x :: String | ShellResult The string to split.
--# @param sep :: String The delimiter to split on.
--# @return :: List[String] A list of substrings.
--# @example
--# str_split("a,b,c", ",")
--# -- Returns = ["a", "b", "c"]
--# files = ?<{ls}>; str_split(files, "\n")
--# @family string
--# @seealso str_join
--# @export
*)
(*
--# Extract the first regex match
--#
--# Returns the first regular-expression match found in each string.
--#
--# @name str_extract
--# @family string
--# @export
*)
(*
--# Extract all regex matches
--#
--# Returns every regular-expression match found in each string.
--#
--# @name str_extract_all
--# @family string
--# @export
*)
(*
--# Test whether a regex matches
--#
--# Returns true when a regular expression matches a string.
--#
--# @name str_detect
--# @family string
--# @export
*)
(*
--# Pad strings to a target width
--#
--# Pads strings on the left, right, or both sides until they reach a requested width.
--#
--# @name str_pad
--# @family string
--# @export
*)
(*
--# Truncate strings for display
--#
--# Shortens strings to a maximum width and appends an ellipsis when needed.
--#
--# @name str_trunc
--# @family string
--# @export
*)
(*
--# Flatten a collection of strings
--#
--# Concatenates string collections into a single string with an optional separator.
--#
--# @name str_flatten
--# @family string
--# @export
*)
(*
--# Count regex matches
--#
--# Counts how many times a regular expression matches within each string.
--#
--# @name str_count
--# @family string
--# @export
*)
let register env =
let env = Env.add "is_empty" (make_builtin ~name:"is_empty" 1 is_empty_impl) env in
let env = Env.add "length" (make_builtin ~name:"length" 1 length_impl) env in
let env = Env.add "str_nchar" (make_builtin ~name:"str_nchar" 1 nchar_impl) env in
let env = Env.add "str_substring" (make_builtin ~name:"str_substring" 3 substring_impl) env in
let env = Env.add "slice" (make_builtin ~name:"slice" 3 substring_impl) env in
let env = Env.add "char_at" (make_builtin ~name:"char_at" 2 char_at_impl) env in
let env = Env.add "index_of" (make_builtin ~name:"index_of" 2 index_of_impl) env in
let env = Env.add "last_index_of" (make_builtin ~name:"last_index_of" 2 last_index_of_impl) env in
let env = Env.add "contains" (make_builtin ~name:"contains" 2 contains_impl) env in
let env = Env.add "starts_with" (make_builtin ~name:"starts_with" 2 starts_with_impl) env in
let env = Env.add "ends_with" (make_builtin ~name:"ends_with" 2 ends_with_impl) env in
let env = Env.add "str_replace" (make_builtin ~name:"str_replace" 3 replace_impl) env in
let env = Env.add "replace_first" (make_builtin ~name:"replace_first" 3 replace_first_impl) env in
let env = Env.add "to_lower" (make_builtin ~name:"to_lower" 1 to_lower_impl) env in
let env = Env.add "to_upper" (make_builtin ~name:"to_upper" 1 to_upper_impl) env in
let env = Env.add "str_trim" (make_builtin ~name:"str_trim" 1 trim_impl) env in
let env = Env.add "trim_start" (make_builtin ~name:"trim_start" 1 trim_start_impl) env in
let env = Env.add "trim_end" (make_builtin ~name:"trim_end" 1 trim_end_impl) env in
let env = Env.add "str_lines" (make_builtin ~name:"str_lines" 1 lines_impl) env in
let env = Env.add "str_words" (make_builtin ~name:"str_words" 1 words_impl) env in
let env = Env.add "str_repeat" (make_builtin ~name:"str_repeat" 2 str_repeat_impl) env in
let env = Env.add "str_format" (make_builtin ~name:"str_format" 2 str_format_impl) env in
let env = Env.add "str_extract" (make_builtin ~name:"str_extract" 2 str_extract_impl) env in
let env = Env.add "str_extract_all" (make_builtin ~name:"str_extract_all" 2 str_extract_all_impl) env in
let env = Env.add "str_detect" (make_builtin ~name:"str_detect" 2 str_detect_impl) env in
let env = Env.add "str_pad" (make_builtin_named ~name:"str_pad" ~variadic:true 2 str_pad_impl) env in
let env = Env.add "str_trunc" (make_builtin_named ~name:"str_trunc" ~variadic:true 2 str_trunc_impl) env in
let env = Env.add "str_flatten" (make_builtin_named ~name:"str_flatten" ~variadic:true 1 str_flatten_impl) env in
let env = Env.add "str_count" (make_builtin ~name:"str_count" 2 str_count_impl) env in
let env = Env.add "str_sprintf" (make_builtin ~name:"str_sprintf" ~variadic:true 1 sprintf_impl) env in
let env = Env.add "str_join" (make_builtin ~name:"str_join" ~variadic:true 1 join_impl) env in
let env = Env.add "str_string" (make_builtin ~name:"str_string" 1 string_impl) env in
let env = Env.add "str_split" (make_builtin ~name:"str_split" 2 strsplit_impl) env in
env