Properties
Category
English
Due On
2018-10-10
Similar Topics
Statistics
Comments
2
Participants
2
Subscribers
28
Votes
1
Views
382
Share
Answered
if i have a word "happy" and i want to change it as a list from this word {h,a,p,p,y}
can i do it ?
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2022 International GeoGebra Institute
Maybe you are looking for this:
Zip(UnicodeToLetter(n), n, TextToUnicode("happy")) -> {"h", "a", "p", "p", "y"}
alternative
text1 = "happy"
Sequence(Take(text1, n, n), n, 1, Length(text1)) -> {"h", "a", "p", "p", "y"}
PS:
without "" it's not possible
Comments have been locked on this page!