0
Array Operations
Hallo,
i would like to change certain values of an array. more specific: i have an array and want to trim() every signle item in this array. but i cant use item() because it's only to view.
i tried this:
for i in Array do
trim(i)
end
which doesnt work
and also this:
for i from 1 to cnt(Array) do
trim( "dont know what to put in here, bc item() doesnt work")
end
how can i do this?
thanks in advance
2 Antworten
-
This does not work (yet). Its on our feature request list.
Birger
-
Hi Christoph,
try this:
---
for II in Array do
II:=trim(II)
end
---
regards
Leo
Content aside
- vor 6 JahrenZuletzt aktiv
- 2Antworten
- 2042Ansichten