forked from lix-project/lix
eldritch horrors
e81ee8b337
tests/functional/lang: Test substring with negative length
(cherry picked from commit 86156d05dd33f856d8804f89669a7fe9b81f1a0d)
Change-Id: I2e2086027a43f8111ba5068ac16590eaa0b798d4
24 lines
282 B
Nix
24 lines
282 B
Nix
with builtins;
|
|
|
|
let
|
|
|
|
s = "foobar";
|
|
|
|
in
|
|
|
|
substring 1 2 s
|
|
+ "x"
|
|
+ substring 0 (stringLength s) s
|
|
+ "y"
|
|
+ substring 3 100 s
|
|
+ "z"
|
|
+ substring 2 (sub (stringLength s) 3) s
|
|
+ "a"
|
|
+ substring 3 0 s
|
|
+ "b"
|
|
+ substring 3 1 s
|
|
+ "c"
|
|
+ substring 5 10 "perl"
|
|
+ "_"
|
|
+ substring 3 (-1) "tebbad"
|