Any software that can rearrange sentences in a paragraphs and not rewrite them

jobtoit352s

New member
Sep 27, 2009
122
0
0
I am looking for a software that rearranges sentences in a paragraphs or whole article. Meaning, not a software that rewrite a sentence (it doesn't matter if it has one) but a software that change sentence sequence in a article or paragraphs. Example: 1st sentence becomes last sentence, last sentence becomes the middle sentence, and so forth. So, any one know any software that can do this?
 


Now days people are looking to get a software for everything..... I welcome this, But I am more towards creating things on my own rather than buying/lending services from others....!
 
How do I really know it is safe to run this since its a .exe (I did run virustotal and it found nothing, but still...)

You could either check google for online virus scan sites or... just find another solution. :thefinger:

Just wanted to help a brother out. ;)
 
You could either check google for online virus scan sites or... just find another solution. :thefinger:

Just wanted to help a brother out. ;)

I wasn't trying to suggest that your .exe wasn't safe, but just thinking something is safe because an online virus scan says so is also naive. Zero day exploits etc aren't gonna get picked up by them.

I mean in honesty, nobody is gonna waste a zero day exploit on a sentence spinner on WF. But my answer to his question was just stating the truth, he has no way to tell whether it's safe. That's the nature of software though.
 
Code:
#!/usr/bin/perl
use Lingua::EN::Sentence qw(get_sentences);
use List::Util 'shuffle';
my $text="This is a sentence. This is the second one. Would a question work? How about a sentence that 'ends in a quote?' Yep, that works as well.";
my $sentences=get_sentences($text);
for (shuffle(@$sentences)) {
   print $_ . " ";
}
print "\n";