Regular Expressions and Search

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
chaus
Forum Newbie
Posts: 1
Joined: Wed Aug 04, 2010 9:16 am

Regular Expressions and Search

Post by chaus »

i need to split words and add to a array from filter input.
i can split words with [ ] (Space character). But also i need to not split "word1 word2" with space character.
for example: Filter input "word1 word2" word3 word4
my array will need to be like this after split
arr[0] = word1 word2
arr[1] = word3
arr[2] = word4

can some one help me about this?

By the way im sorry for my poor english :oops:

Thanx
Post Reply