Help with characters that are displayed as I can remove them
[upload|ACpz7DepRnXkEopWvd2LCw==]
Help with characters that are displayed as I can remove them
[upload|ACpz7DepRnXkEopWvd2LCw==]
“xoceunder” wrote:
Help with characters that are displayed as I can remove them[upload|ACpz7DepRnXkEopWvd2LCw==]
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[upload|ACpz7DepRnXkEopWvd2LCw==]
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
BTW Roku has any plan to support emoticons ?
“RokuKC” wrote:
“xoceunder” wrote:
Help with characters that are displayed as I can remove them[upload|ACpz7DepRnXkEopWvd2LCw==]
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
thanks friend
“marcelo.cabral” wrote:
BTW Roku has any plan to support emoticons ?
I don’t think there is anything planned in the short term.
“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).
“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).
Thanks friend already solved