Moin!
So we say here in North Germany.
I have a problem at splitting or segmenting a number. I have a long number and want to segment it like this:
Number: 123456
Segmenting should be like following: 1, 2, 3, 456 (last one is the rest.)
How to achieve such a result? I tried it like this:
Thanks for any help.
Greetz,
Stefan
Anke
2
Give another example like this: 123456789
Result: 1, 2, 3, 4, 5, 6, 789
Try something this:
i reversed the number splitting.
some examples:
123456 should be 123, 4, 5, 6
9876543 should be 9876, 5, 4, 3
1234567890 should be 123456, 7, 8, 9
Hope now its more clear. Sorry for getting in mind to change the splitting direction.
TIMAI2
4
Also see for some ideas....
Anke
6
numberSplit2.aia (3.1 KB)
Ok, i have it now. And I'm sorry for not being clear enough. Thank you for your help!
1 Like
Anke
8
Does it (my test aia numberSplit2.aia
) work for you?
If so, close the topic by Clicking on Solution.
system
Closed
9
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.