Is there an easy way to make chunked split on spac...
# getting-started
k
Is there an easy way to make chunked split on spaces and not just size?
j
Are you looking for
.split
?
s
maybe in conjunction with
chunked
? like
somestring.split(" ").chunked(4)