is there any nice way to split an string after " " or . ?
Like
$string = "test.test" result = test
$string = "test doe" result = test
Sure i can use explode two times, but I am sure thats not the best solutions ;)
|
is there any nice way to split an string after " " or . ? Like
Sure i can use explode two times, but I am sure thats not the best solutions ;) |
||||
|
|
|
If you want to split on several different chars, take a look at preg_split
|
|||||
|
|
|
You want the
Though in your case I suspect that using |
|||
|
|
|
You could do a strtr of . into space and then explode by space. Since strtr is very fast. |
|||
|
|