bradinthehouse
ISP
I'm trying to extract data from the string:
"FIPSCodeVinitaOK74301Craig40035"
in the order
"FIPSCode{City}{ST}{ZIP}{COUNTY}{FIPS}"
The data i want is the state initials (any two letters before the zip code), and the county (The text between the zip code and the numeric fips code).
Is there any way i can break this string into an array, such that it would be
$array[0] = "FIPSCode"
$array[1] = "Vinita"
$array[2] = "OK"
$array[3] = "74301"
$array[4] = "Craig"
$array[5] = "40035"
Any feedback at all is much appreciated, if you have any questions about my inquiry, you can reply, or message me at bradinthehouse on yahoo messenger.
"FIPSCodeVinitaOK74301Craig40035"
in the order
"FIPSCode{City}{ST}{ZIP}{COUNTY}{FIPS}"
The data i want is the state initials (any two letters before the zip code), and the county (The text between the zip code and the numeric fips code).
Is there any way i can break this string into an array, such that it would be
$array[0] = "FIPSCode"
$array[1] = "Vinita"
$array[2] = "OK"
$array[3] = "74301"
$array[4] = "Craig"
$array[5] = "40035"
Any feedback at all is much appreciated, if you have any questions about my inquiry, you can reply, or message me at bradinthehouse on yahoo messenger.