is there a way to slice a string lets say i have this variable

$output=Country=UNITED STATES (US) &City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87

i want to slice it in a way i want to pull latitude and longitude values in to seperate variables, subtok is not serving the purpose

link|improve this question

57% accept rate
feedback

6 Answers

up vote 8 down vote accepted

You don't need a regular expression for this; use explode() to split up the string, first by &, and then by =, which you can use to effectively parse it into a nice little array mapping names to values.

link|improve this answer
could you please give an example of the above? Thanks. – hitautodestruct Mar 26 at 12:39
$var_array = explode('&', $var_string); foreach($var_array as $var_to_split) – prayfomojo Apr 3 at 10:11
I messed up that last entry by hitting enter. Not a fan of that style of auto-submit. And now it doesn't seem to wrap the following in a pre-code block no matter what I try ` // Separate the strings into individual vars $var_array = explode('&', $var_string); $mapped_var_array = array(); // Set up this to hold mapped vars foreach($var_array as $var_to_split){ $var_to_split = explode('=', $var_to_split); $mapped_var_array[$var_to_split[0]] = $var_to_split[1]; } // Now do whatever you want with $mapped_var_array ` Something like that. @hitautodestruct – prayfomojo Apr 3 at 10:20
Thanks alot @prayfomojo. I also added your comment to the answer. – hitautodestruct Apr 4 at 10:42
feedback
$output='Country=UNITED STATES (US) &City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87';
parse_str($output, $array);
$latitude = $array['latitude'];

You could also just do

parse_str($output);
echo $latitude;

I think using an array is better as you are not creating variables all over the place, which could potentially be dangerous (like register_globals) if you don't trust the input string.

link|improve this answer
feedback

It looks likes it's coming from an URL, although the URL encoding is gone.

I second the suggestions of using explode() or preg_split() but you might also be interested in parse_str().

$output = "City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87";
parse_str($output, $results);
$lat = $results['Latitude'];
$lon = $results['Longitude'];
link|improve this answer
feedback

I'm not sure exactly what you're demonstrating in your code, maybe it's just some typos, is the "$output" the name of the variable, or part of the string?

Assuming it's the name of the variable, and you just forgot to put the quotes on the string, you have a couple options:


$sliced = explode('&', $output)

This will create an array with values: "Country=UNITED STATES(US) ", "City=Scottsdale, AZ ", etc.


$sliced = preg_split('/[&=]/', $output);

This will create an array with alternating elements being the "variables" and their values: "Country", "UNITED STATES(US) ", "City", "Scottsdale, AZ ", etc.

link|improve this answer
feedback

You could do the following:

$output = 'Country=UNITED STATES (US) &City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87';

$strs = explode('&', $output);
foreach ($strs as $str) {

   list($var, $val) = explode('=',$str);
   $$var = trim($val);

}

This would give you variables such as $Latitude and $Longitude that are set to the value in the key/value pair.

link|improve this answer
Variable variables? Please no :( – Alex Fort Feb 25 '09 at 21:25
This is a really bad idea. What if your keys contain spaces? PHP's associative arrays make more sense here: $array[$var] = trim($val); – eplawless Feb 25 '09 at 21:32
feedback

I suggest you read about regular expressions in the PHP help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.