|
Previous Top Next |
Prototype: | (String pS, <String pDel>),LONG,PROC |
pS | String to parse into lines |
pDel | Optional delimiter to use as End-Of-Line string. Added 2015-09-12 |
Returns | Number of records in the Lines property |
This method calls the SplitString method in order to split the string using CRLF (<13,10>) as delimiter.
Example:
ITS ITStringClass
S String(1024)
I Long
Code
S = 'Icetips Creative, Inc.<13,10>136 E. 8th Street<13,10>Port Angeles, WA 98362'
ITS.StringToLines(S)
Loop I = 1 To Records(ITS.Lines)
Message('Line ' & I & ': ' & ITS.GetLine(I))
End
See also: