Word wrap: Difference between revisions

Content added Content deleted
Line 153: Line 153:
</pre>
</pre>
Without Browser
Without Browser
<lang runbasic>doc$ = "In olden times when wishing still helped one, there lived a king ";_
<lang runbasic>doc$ = "In olden times when wishing still helped one, there lived a king
"whose daughters were all beautiful, but the youngest was so beautiful ";_
whose daughters were all beautiful, but the youngest was so beautiful
"that the sun itself, which has seen so much, was astonished whenever ";_
that the sun itself, which has seen so much, was astonished whenever
"it shone in her face."
it shone in her face. Close by the king's castle lay a great dark
forest, and under an old lime-tree in the forest was a well, and when
input "Width"; width
the day was very warm, the king's child went out into the forest and
sat down by the side of the cool fountain, and when she was bored she
took a golden ball, and threw it up on high and caught it, and this
ball was her favorite plaything."

input "Width"; width ' user specifies width


while word$(doc$,i + 1," ") <> ""
while word$(doc$,i + 1," ") <> ""
i = i + 1
i = i + 1
thisWord$ = word$(doc$,i," ") + " "
thisWord$ = word$(doc$,i," ") + " "
if word$(thisWord$,2,chr$(13)) <> "" then thisWord$ = word$(thisWord$,2,chr$(13)) + " " ' strip the <CR>
if len(docOut$) + len(thisWord$) > width then
if len(docOut$) + len(thisWord$) > width then
print docOut$
print docOut$
docOut$ = ""
docOut$ = ""
end if
end if
docOut$ = docOut$ + thisWord$
docOut$ = docOut$ + thisWord$
wend
wend