fuzion-lang.dev — The Fuzion Language Portal
JavaScript seems to be disabled. Functionality is limited.
Fuzion
•
Idioms
•
Idiom # 283: Split with a custom string separator
Idiom # 283: Split with a custom string separator
See
programming-idioms.org
:
Code
parts := s.split sep
What are effects?
Runnable Example
ex283 is s :="HellofooWorld !foofoodone" sep := "foo" parts := s.split(sep) say parts
What are effects?
last changed: 2024-07-01
next: Idiom # 284: Create a zeroed list of integers