xoceunder
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2017
12:10 PM
Help with characters
Help with characters that are displayed as I can remove them

6 REPLIES 6


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2017
07:15 PM
Re: Help with characters
"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
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2017
10:17 PM
Re: Help with characters
"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
BTW Roku has any plan to support emoticons ?
xoceunder
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2017
11:21 AM
Re: Help with characters
"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
thanks friend


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2017
11:09 AM
Re: Help with characters
"marcelo.cabral" wrote:
BTW Roku has any plan to support emoticons ?
I don't think there is anything planned in the short term.
NB_
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017
10:00 AM
Re: Help with characters
"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). 8-)
xoceunder
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017
10:08 AM
Re: Help with characters
"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