salman23
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2014
12:42 AM
paragraph not splitting as sentences..
Hi,
i am using roRegex component for splitting the description paragraph into strings by using ". " as the delimiter.But i am getting a weird output.Can somebody help please..?
code:
output:
i am using roRegex component for splitting the description paragraph into strings by using ". " as the delimiter.But i am getting a weird output.Can somebody help please..?
code:
if valid(videodesc)
SplitDesc = CreateObject("roRegex",". ", "")
if SplitDesc.IsMatch(videodesc)
FinalDesc =""
print "contains :";regex
print "description: ";videodesc
descCase = SplitDesc.split(videodesc)
print "no of sentences :";descCase.Count()
for each descript in descCase
print "each sentence :";descript
' FinalDesc = FinalDesc + descript
end for
' videodesc = FinalDesc
else
print "no matching expression found.."
end if
output:
description: The full feature documentary of Indie Game: The Movie with clean audio and visuals. Audio swears omitted and potentially offending images and swear
s on screen blurred. The Super Clean version is also available in a handy, gift-able DVD form: http://shop.indiegamethemovie.com/produ ... -the-movie
no of sentences : 40
each sentence :Th
each sentence :ful
each sentence :featur
each sentence :documentar
each sentence 😮
each sentence :Indi
each sentence :Game
each sentence :Th
each sentence :Movi
each sentence :wit
each sentence :clea
each sentence :audi
each sentence :an
each sentence :visuals
each sentence :Audi
each sentence :swear
each sentence :omitte
each sentence :an
each sentence :potentiall
each sentence :offendin
each sentence :image
each sentence :an
each sentence :swear
each sentence 😮
each sentence :scree
each sentence :blurred
each sentence :Th
each sentence :Supe
each sentence :Clea
each sentence :versio
each sentence :i
each sentence :als
each sentence :availabl
each sentence :i
each sentence :
each sentence :handy
each sentence :gift-abl
each sentence :DV
each sentence :form
2 REPLIES 2
renojim
Community Streaming Expert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2014
03:55 AM
Re: paragraph not splitting as sentences..
In a regular expression, . matches any character. You need to escape the period. I think you want (untested:)
You may want to look into the Tokenize function:
-JT
SplitDesc = CreateObject("roRegex","\. ", "")
You may want to look into the Tokenize function:
lines = videodesc.tokenize(".")
for each line in lines
print line.trim()
end for
-JT
Roku Community Streaming Expert
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
salman23
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2014
09:09 PM
Re: paragraph not splitting as sentences..
"renojim" wrote:
In a regular expression, . matches any character. You need to escape the period. I think you want (untested:)SplitDesc = CreateObject("roRegex","\. ", "")
You may want to look into the Tokenize function:lines = videodesc.tokenize(".")
for each line in lines
print line.trim()
end for
-JT
It was a great information, Renojim. Thanks a bunch.