|
Hi,
I want to use explode function using 3 parameters.
For example this is the string:
Cellular Phone Repair & Services-Samsung
Now I want to break this string with space and the sign of '-' and '&' and space.....and the result should be:
array[0] = Cellular
array[1] = Phone
array[2] = Repair
array[3] = Services
array[4] = Samsung
Thanks for your help in advance!
|