Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 16, 2012 23:10
Show Gist options
  • Select an option

  • Save MilkZoft/1623510 to your computer and use it in GitHub Desktop.

Select an option

Save MilkZoft/1623510 to your computer and use it in GitHub Desktop.
codejobs - Remove repeated words (case insensitive) - PHP, Regexp
<?php
$text = preg_replace("/s(w+s)1/i", "$1", $text);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment