Hi folks,
How would I split up a sentence into letters and put them into an array? I would also like to include spaces, maybe replacing them with "space" or something?
Say the sentence was:
$sentence = "The quick brown fox...";
I want an array like:
$letter = ("T","h","e","space","q","u", etc, etc...
Cheers,
adam
How would I split up a sentence into letters and put them into an array? I would also like to include spaces, maybe replacing them with "space" or something?
Say the sentence was:
$sentence = "The quick brown fox...";
I want an array like:
$letter = ("T","h","e","space","q","u", etc, etc...
Cheers,
adam

