Page 1 of 1

Regular Expressions and Search

Posted: Wed Aug 04, 2010 9:31 am
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