Explode PROBLEM
Posted: Tue Jul 27, 2004 3:20 am
explode(" ", $textfield);
This work fine, but ...
I need to explode on this criteria IS IT POSSIBLE?
explode(" some_joker_character some_joker_character ", $textfield);
EXPLANATION: Is there a joker sign, I need to explode the textfield like this: empty space (1 char long) any_word another empty space (1 char long) any_word another empty space (1 char long)
Basicaly the idea is to explode the texfield to get combinations of two words. Is this possible with the explode function and is it possible at all, and how ?
Thanks Ahead !
This work fine, but ...
I need to explode on this criteria IS IT POSSIBLE?
explode(" some_joker_character some_joker_character ", $textfield);
EXPLANATION: Is there a joker sign, I need to explode the textfield like this: empty space (1 char long) any_word another empty space (1 char long) any_word another empty space (1 char long)
Basicaly the idea is to explode the texfield to get combinations of two words. Is this possible with the explode function and is it possible at all, and how ?
Thanks Ahead !