Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Last active December 6, 2016 19:29
Show Gist options
  • Save PrateekKumarSingh/609ad2a33074421fda0be0e2452f3bb6 to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/609ad2a33074421fda0be0e2452f3bb6 to your computer and use it in GitHub Desktop.
#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