Hey guys, I have a problem, I have to take a text and depending if a boolean - split_words is true or false I have to parse the text on some lines splitting the words or leaving them whole.
for example, text is: This is the text I have to split.
and
split_words = true
0123456789
This is th
e text I h
ave to spl
it
split_words = false
0123456789
This is
the text I
have to
split
the 0123456789 are just for guidelines.
I managed to do the part for split_words = true, I can seem to figure out to do it for split_words=false.
p.s.
it seems the text arrangement gets change when I post but I hope you get the ideea behind the split.