I am looking for the best known algorithm for removing duplicates from a string. I can think of numerous ways of doing this, but I am looking for a solution that is known for being particularly efficient.
Let's say you have the following strings:
Lorem Ipsum Lorem IpsumLorem Lorem LoremLorem Ipsum Dolor Lorem Ipsum Dolor Lorem Ipsum DolorI would expect this algorithm to output for each (respectively):
Lorem IpsumLoremLorem Ipsum DolorNote, I am doing this in PHP, in case anybody is aware of any built in PHP functions that can help with this.
Thanks!
$arr = explode( " " , $string );
$arr = array_unique( $arr );
$string = implode(" " , $arr);