Last active
December 6, 2016 19:29
-
-
Save PrateekKumarSingh/609ad2a33074421fda0be0e2452f3bb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Extracting Best sentences with highest Ranks within the word limit | |
$BestSentences = Foreach($Item in (Get-SentenceRank $Content | Sort SentenceScore -Descending)) | |
{ | |
#Condition to limit Total word Count | |
$TotalWords += $Item.WordCount | |
If($TotalWords -gt $WordLimit) | |
{ | |
break | |
} | |
else | |
{ | |
$Item | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment