diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:47:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:47:37 +0000 |
commit | 00e2eb4fd0266c5be01e3a527a66aaad5ab4b634 (patch) | |
tree | a6a58bd544eb0b76b9d3acc678ea88791acca045 /test/04-function-mid.txt | |
parent | Initial commit. (diff) | |
download | libixion-00e2eb4fd0266c5be01e3a527a66aaad5ab4b634.tar.xz libixion-00e2eb4fd0266c5be01e3a527a66aaad5ab4b634.zip |
Adding upstream version 0.19.0.upstream/0.19.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/04-function-mid.txt')
-rw-r--r-- | test/04-function-mid.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/04-function-mid.txt b/test/04-function-mid.txt new file mode 100644 index 0000000..9385eb6 --- /dev/null +++ b/test/04-function-mid.txt @@ -0,0 +1,28 @@ +%mode init +A1@ABCDE +A2:12345 +B1=MID(A1,1,5) +B2=MID(A1,1,6) +B3=MID(A1,2,3) +B4=MID(A1,3,3) +B5=MID(A1,3,0) +B6=MID(A1,0,1) +B7=MID(A1,10,2) +C1=MID(A2,1,5) +C2=MID(A2,1,6) +C3=MID(A2,2,3) +C4=MID(A2,5,10) +%calc +%mode result +B1="ABCDE" +B2="ABCDE" +B3="BCD" +B4="CDE" +B5="" +B6=#VALUE! +B7="" +C1="12345" +C2="12345" +C3="234" +C4="5" +%check |