Say I have a string like this:
$string = '.30..5..12..184..6..18..201..1.'
How would I pull out each of the integers, stripping the periods, and store them into an array?
|
|
You could use this. You break the string up by all of the periods... but this only works if it is exactly like that; if there is other stuff in the middle for example 25.sdg.12 it wouldnt work.
I checked and PHP doesn't support negative indexes but you can count the array list and just use that. Ex:
|
||||
|
|
|
This will break up your string into an array and then loop through to grab numbers.
Your numbers will be in the array |
|||||
|
|
|
All I could think of.
Or If you want to the array in a variable
|
|||
|
|
|
Someone else posted this but then removed their code, it works as intended:
Output:
|
|||
|
|
|
try this ..
|
|||
|
|