In this URL How can I split multiple joined words?, i have found a source code which works perfectly written in perl, but my requirement is in PHP.
I have never worked on perl, not even once, But I have managed to translate the perl code to PHP.
But it does not give the correct result, can you please help me in finding out the problem.
#!/usr/bin/perl
use strict;
my $WORD_FILE = '/usr/share/dict/words'; #Change as needed
my %words; # Hash of words in dictionary
# Open dictionary, load words into hash
open(WORDS, $WORD_FILE) or die "Failed to open dictionary: $!\n";
while (<WORDS>) {
chomp;
$words{lc($_)} = 1;
}
close(WORDS);
# Read one line at a time from stdin, break into words
while (<>) {
chomp;
my @words;
find_words(lc($_));
}
sub find_words {
# Print every way $string can be parsed into whole words
my $string = shift;
my @words = @_;
my $length = length $string;
foreach my $i ( 1 .. $length ) {
my $word = substr $string, 0, $i;
my $remainder = substr $string, $i, $length - $i;
# Some dictionaries contain each letter as a word
next if ($i == 1 && ($word ne "a" && $word ne "i"));
if (defined($words{$word})) {
push @words, $word;
if ($remainder eq "") {
print join(' ', @words), "\n";
return;
} else {
find_words($remainder, @words);
}
pop @words;
}
}
return;
}
PHP code written by me, but not working.
<?php
$WORD_FILE = file_get_contents ("word.txt") ;
$words = Array () ;
foreach ($WORD_FILE as $str)
{
$words [$str] = 1 ;
}
while(true)
{
$input = trim(fgets(STDIN, 1024));
find_words ($input) ;
}
function find_words ($str)
{
$string = $str ;
$length = strlen ($str) ;
for ($i = 1 ; $i <= $length; $i++)
{
$word = substr ($string, 0, $i) ;
$remainder = substr ($string, $i, $length - $i) ;
$i++ ;
if ($i == 1 && ($word != "a" && $word != "i")) ;
if ($words($word))
{
array_push($words, $word) ;
if ($remainder == "")
{
print_r ($words) ;
return ;
}
else
{
find_words ($remainder, @words) ;
}
array_pop ($words) ;
}
}
return ;
}
?>