buenafe
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-09-2012
09:15 AM
Help on - Len (s As String)
How do I get the length of a variable defined as a roString?
I'm posting this at work (no Roku with me š ) so I don't have the exact code with me and error message with me.
I tried the this older post http://forums.roku.com/viewtopic.php?p=244210to convert object to string, but it did not work.
r = CreateObject("roRegex", "REGEX PATTERN","")
'where REGEX PATTERN is complicated regex pattern
first_match = r.Match(v_string).[0]
'v_string is a long html string
print type(first_match)
'returns roString. I expected this to be a "string" .
print len(first_match)
' crashes
I'm posting this at work (no Roku with me š ) so I don't have the exact code with me and error message with me.
I tried the this older post http://forums.roku.com/viewtopic.php?p=244210to convert object to string, but it did not work.
----------------------------------------------------------------------------------
current: two roku XDS 2xs, dtvpal, boxeebox, kylo.tv,
radar: wdlxtv.com
current: two roku XDS 2xs, dtvpal, boxeebox, kylo.tv,
radar: wdlxtv.com
3 REPLIES 3
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-09-2012
09:29 AM
Re: Help on - Len (s As String)
print len(first_match).ToStr ()

RokuMarkn
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-09-2012
09:48 AM
Re: Help on - Len (s As String)
The crash is a bug that affects certain string operations when performed on objects that implement ifString but are not Strings (like roString). There is a fix in the pipeline, but until then you can convert your roString to a String with GetString:
--Mark
first_match_str = first_match.GetString()
print type(first_match_str) ' prints "String"
print Len(first_match_str) ' won't crash
--Mark
buenafe
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā03-13-2012
09:50 AM
Re: Help on - Len (s As String)
First, thank you for the help.
I tried both suggestion and still got the crash.
I went with a work around to avoid the "roArray Match(String str)"
using "roList Split(String str)"
and then I took the first element (which is a type String) and applied further string manipulations
to get what I need.
Later, I'll post details of the error for future reference.
I tried both suggestion and still got the crash.
I went with a work around to avoid the "roArray Match(String str)"
using "roList Split(String str)"
and then I took the first element (which is a type String) and applied further string manipulations
to get what I need.
Later, I'll post details of the error for future reference.
----------------------------------------------------------------------------------
current: two roku XDS 2xs, dtvpal, boxeebox, kylo.tv,
radar: wdlxtv.com
current: two roku XDS 2xs, dtvpal, boxeebox, kylo.tv,
radar: wdlxtv.com