Link to home
Start Free TrialLog in
Avatar of basirana
basirana

asked on

Demilter without string tokenizer

Hi

I am looking for sample code that will file spaces and get the words in the sentance.
Problem is I cannot use string tokenizer.

example: " THIS IS THE STRING"
$word1 = THIS
$word2 = IS
$word3 = THE
...

It is very urgent. It would be great if you can get me sample code...

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Perl_Diver
Perl_Diver

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Perl_Diver
Perl_Diver

Please explain what's the urgency? Are you sitting in class taking a test?
Avatar of ozo

($word1,$word2,$word3)=split for " THIS IS THE STRING"
I guess it was really urgent......