Text$ = "For English-speaking friends, this notice in English: This program is designed to split extremely long text so that whole words appear on a line and do not break at the end of a line. Dividing is only possible in spaces between words."
Text$ = Text$ + " Lets add some really long strings like ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"
Text$ = Text$ + " Plus, this shorty."
Calculate_WordWrap Text$, 600, foo()
'and now to try with a different font
'Print "NOTE: The next test is with a non-monospaced font, so if your PC is like mine, expect your fans to kick in, CPU usage to skyrocket, and for this process to take a few seconds."
'Print "(We're talking 30+ seconds here, so don't think your PC has locked up if it takes that long, or longer, here.)"
'Print
'Print "NOTE: This is with a NON-MONOSPACED font."
Calculate_WordWrap Text$, 600, foo()
'Print UBound(foo)
'_Delay .25
'_KeyClear
'Cls
''and now to try with a different font
'_Font _LoadFont("courbd.ttf", 12, "monospace")
'Print "NOTE: This test is with the same font"
'Print " set as MONOSPACE, just to test"
'Print " the speed difference."
'time## = Timer
'Calculate_WordWrap Text$, 300, foo()
'Line (301, 0)-(640, 480), &HFFFF0000, BF
'Print UBound(foo)
'For i = 0 To 25
' Print foo(i)
'Next
'Print Using "###.### seconds, to be exact."; Timer - time##
Sub Calculate_WordWrap
(temp$
, wide%
, result
() As String) BreakPoint = ",./- ;:!" 'I consider all these to be valid breakpoints. If you want something else, change them.
'first find the natural length of the line
lineend = i - 1
t$
= RTrim$(Left$(text$
, lineend
)) 'at most, our line can't be any longer than what fits the screen. count = count + 1
clean_exit: