
andrewumb
New User
Oct 16, 2006, 11:03 PM
Post #1 of 2
(1955 views)
|
|
count sentences in document
|
Can't Post
|
|
this is a second topic. i asking again i have a file "test.txt" and contain =================== <TEXT> sentences one , sentence two . sentence three aon two three. </TEXT> <TEXT> laerning perl , with lingua . blaaaaaaaaaaaaa. blaaaa. dsadsad. <TEXT> strill learning .sdaasdsad.dsadsadasd .dsadsad </TEXT> ==================== and in my case , <text> .. </text> we can say that "document" and i want to count each sentence in document my coding : use HTML::TokeParser; my $file="test.txt"; my $seleksi=HTML::TokeParser->new($file); my $j=0; while ($seleksi->get_tag('text')){ $j++; print $seleksi->get_text(),"\n"; } print "count document are " , $j; i want to combine to count sentence . may be result is document 1 = sum count sentence= 2 document 2 = sum count sentence =3 document 3 =sum count sentence =4 sorry for my bad english
(This post was edited by andrewumb on Oct 16, 2006, 11:05 PM)
|