Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
tempString = FILETOSTR("anyfile.txt")
lnLines = ALINES(laLines, tempString)
lcOut = ""
IF lnLines < 3
*-- Not enough lines
lcOut = "DEFAULT VALUE" && Replace with default value
ELSE
*-- SKIP first and last
FOR ln = 2 TO lnLines - 1
lcOut = lcOut + laLines(ln) + CHR(13)
NEXT
ENDIF
STRTOFILE(lcOut, "anyfile.txt")
TempString = LEFT(tempstring,RAT(CHR(13),tempString,1)-1)
TempString = LEFT(tempstring,RAT(CHR(13),tempString,[COLOR=red][b]2[/b][/color])-1)