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.
PUBLIC cText,cRemove
*text with funny character
cText="abc?¤§def"
?cText
FOR n = 1 TO 31
cremove=CHR(n)
ctext = CHRTRAN(cText,cRemove,"")
ENDFOR
FOR n = 127 TO 255
cremove=CHR(n)
ctext = CHRTRAN(cText,cRemove,"")
ENDFOR
?ctext
lcGoodChars = ;
"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+,./"
lcStr = ;
CHRTRAN(lcStr, CHRTRAN(lcStr, lcGoodChars, ""), "")