
squirreltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2013
12:28 PM
return
I know this is really basic but i cant find an example that helps me and haven't used this before.
here is a regex line that returns true or false in the debugger as it should.
I can't figure out the syntax to do something with the result in the code.
what i want is just:
if answer is "true"
do this
else
end if
Thanks
here is a regex line that returns true or false in the debugger as it should.
? matchmark.IsMatch(markone)
I can't figure out the syntax to do something with the result in the code.
what i want is just:
if answer is "true"
do this
else
end if
Thanks
Kinetics Screensavers
2 REPLIES 2
joetesta
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2013
12:33 PM
Re: return
I think you just need to do this:
if ( matchmark.IsMatch(markone) ) then
' do stuff
else
' do other stuff
end if
aspiring

squirreltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2013
12:42 PM
Re: return
Perfect! Thank you joetesta.
Kinetics Screensavers