vote up 0 vote down star

I have large text files 140k or larger full of paragraphs of text and need to insert a sentence in to this file at random intervals only if the file contains more then 200 words.

The sentence I need to insert randomly throughout the larger document is 10 words long.

I have full control over the server running my LAMP site so I can use PHP or a linux command line application if one exists which would do this for me.

Any ideas of how best to tackle this would be greatly appreciated.

Thanks

Mark

flag
9  
Why is it that you need to do this? This sounds like an SEO/spam thing... that one might run on a compromised server. – scunliffe Aug 23 at 3:00
4  
@scunliffe - With all due respect, that's none of our business. We're here to answer programming questions, not delve into people's personal business. – Jonathan Sampson Aug 23 at 3:07
1  
@Jonathan Sampson - but we don't want to contribute to spam. – Shawn J. Goff Aug 23 at 3:12
4  
@Shawn, scunliffe: So? Any spammer with a working brain-cell would just deny the accusation. Do you really expect a "Yes, this is for spam, please don't answer my question?" Looking at the OPs profile he's somehow into text-to-speech, this might used be to insert random advertisements/copyrights/watermarks into the text before speechifying it. You can do a lot of things with a knife besides killing people. Don't be paranoid and close questions for nothing, guys. :) – deceze Aug 23 at 3:55
Agreed - this question is valid. In particular, the most obvious use-case would be water-marking text with copyright etc. – Marc Gravell Aug 23 at 6:48
show 1 more comment

2 Answers

vote up 1 vote down

You could use str_word_count() to get the number of words in the string. From there, determine if you want to insert the string or not. As for inserting it "at random," that could be dangerous. Do you mean to suggest you want to insert it in a couple random areas? If so, load the contents of the file in as an array with file() and insert your sentence anywhere between $file[0] and count($file);

link|flag
"Do you mean to suggest you want to insert it in a couple random areas?" Yes this is what I was thinking needed to be done. Thanks Mark – Mark McKay Aug 23 at 17:48
vote up 0 vote down

The following code should do the trick to locate and insert strings into random locations. From there you would just need to re-write the file. This is a very crude way and does not take into account punctuation or anything like that, so some fine-tuning will most likely be necessary.

$save = array();
$words = str_word_count(file_get_contents('somefile.txt'), 1);

if (count($words) <= 200)
  $save = $words;
else {
  foreach ($words as $word) {
    $save[] = $word;
    $rand = rand(0, 1000);
    if ($rand >= 100 && $rand <= 200)
      $save[] = 'some string';
  }
}

$save = implode(' ', $save);

This generates a random number and checks if it's between 100 and 200 inclusive and, if so, puts in the random string. You can change the range of the random number and that of the check to increase or decrease how many are added. You could also implement a counter to do something like make sure there are at least x words between each string.

Again, this doesn't take into account punctuation or anything and just assumes all words are separated by spaces. So some fine tuning may be necessary to perfect it, but this should be a good starting point.

link|flag
Thanks for this Steven, I appreciate it and will give it a try. Mark – Mark McKay Aug 23 at 17:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.