Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text string that looks like this

var1=red&var2=green&var3=blue&var4=magenta

How can manipulate this string isolate the value of var2 which in this case is green

share|improve this question

5 Answers

up vote 3 down vote accepted

I'd start with parse_url What you have looks close enough to an URL param string that you might as well use the built in methods for handling URLs.

share|improve this answer

Use the php function parse_str() to convert it to an array.

share|improve this answer
parse_str($str, $vars);
echo $vars['var2'];
share|improve this answer

Try this:

parse_str($str,$tmp);
// $tmp['var2'] is now what you're looking for
share|improve this answer

You can use parse_str function to parse the string into an array / variables. In this case I prefer outputting to array instead of variables to prevent the pollution of namespace.

<?php

$str = 'var1=red&var2=green&var3=blue&var4=magenta';

parse_str($str, $output);

$result = null;
foreach($output as $k => $v){
    if($v == 'green'){
        $result = $k;
        break;
    }
}

?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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