' splitString() sample. ' Last updated: <2024/02/16 00:03:20 +0900> #include "splitstringb2.bi" Dim As String text text = "char id=32 x=250 y=22 width=5 height=5 xoffset=-2 yoffset=21 xadvance=7 page=0 chnl=15" 'text = "info face=""DejaVu Sans"" size=24 bold=1 italic=0 charset=""ANSI"" unicode=0 stretchH=100 smooth=1 aa=4 padding=0,0,0,0 spacing=1,1 outline=2" Dim words() As String splitStringB2(text, " ", words()) Print "[" & text & "]" For i As Integer = 0 To UBound(words) Print i & ": [" & words(i) & "]" Next i Print "end."