"xoceunder" wrote:
Help with characters that are displayed as I can remove them
for each c in str.split(""):print c, asc(c):end for
"RokuKC" wrote:"xoceunder" wrote:
Help with characters that are displayed as I can remove them
You might want to debug to see what those mysterious character codes are.
I assume you control these strings?
In your BrightScript you can print them out to the debug console, e.g.for each c in str.split(""):print c, asc(c):end for
"RokuKC" wrote:"xoceunder" wrote:
Help with characters that are displayed as I can remove them
You might want to debug to see what those mysterious character codes are.
I assume you control these strings?
In your BrightScript you can print them out to the debug console, e.g.for each c in str.split(""):print c, asc(c):end for
"marcelo.cabral" wrote:
BTW Roku has any plan to support emoticons ?
"RokuKC" wrote:
You might want to debug to see what those mysterious character codes are.
"RokuNB" wrote:"RokuKC" wrote:
You might want to debug to see what those mysterious character codes are.
My money are on these particular ones being chr(13) from strings coming from windows text file (using CR+LF for line end). 😎