FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » split array and string from string (trust me it will make sense when you read)
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
split array and string from string (trust me it will make sense when you read) [message #180790] Tue, 19 March 2013 04:12 Go to next message
cph is currently offline  cph
Messages: 10
Registered: September 2012
Karma: 0
Junior Member
I have a string that consists of several key value pairs such as [key=value], a given key may appear more than once.

For example a string of:

"Hello world, [key=value] [key2=value1] This is just a test. [key=value2]"

I want to do two things, one I want an easier way to view the key value pairs, I am thinking an array

array ('key' => array ('value', 'value2'), 'key2' => 'value1');

Secondly I want the key/value pairs removed from the string so I would get the array and a new string that would look like this:

"Hello world, This is just a test."

What would be the easiest way to accomplish this?
Re: split array and string from string (trust me it will make sense when you read) [message #180791 is a reply to message #180790] Tue, 19 March 2013 04:17 Go to previous messageGo to next message
cph is currently offline  cph
Messages: 10
Registered: September 2012
Karma: 0
Junior Member
I know of a way where I can step though looking for each instance of "[" reading between that and the next "=" and that is my key, then read between the "=" and the "]" for the value. Lead each of those sub strings into an array. Then do a str_ireplace to replace [$key=$value] with "". Just curious if there is an easier way.

On Monday, March 18, 2013 9:12:28 PM UTC-7, CloudPress wrote:
> I have a string that consists of several key value pairs such as [key=value], a given key may appear more than once.
>
>
>
> For example a string of:
>
>
>
> "Hello world, [key=value] [key2=value1] This is just a test. [key=value2]"
>
>
>
> I want to do two things, one I want an easier way to view the key value pairs, I am thinking an array
>
>
>
> array ('key' => array ('value', 'value2'), 'key2' => 'value1');
>
>
>
> Secondly I want the key/value pairs removed from the string so I would get the array and a new string that would look like this:
>
>
>
> "Hello world, This is just a test."
>
>
>
> What would be the easiest way to accomplish this?
Re: split array and string from string (trust me it will make sense when you read) [message #180800 is a reply to message #180790] Tue, 19 March 2013 13:06 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 3/19/2013 12:12 AM, CloudPress wrote:
> I have a string that consists of several key value pairs such as [key=value], a given key may appear more than once.
>
> For example a string of:
>
> "Hello world, [key=value] [key2=value1] This is just a test. [key=value2]"
>
> I want to do two things, one I want an easier way to view the key value pairs, I am thinking an array
>
> array ('key' => array ('value', 'value2'), 'key2' => 'value1');
>
> Secondly I want the key/value pairs removed from the string so I would get the array and a new string that would look like this:
>
> "Hello world, This is just a test."
>
> What would be the easiest way to accomplish this?
>

Maybe a regex?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: split array and string from string (trust me it will make sense when you read) [message #180811 is a reply to message #180800] Wed, 20 March 2013 00:34 Go to previous messageGo to next message
cph is currently offline  cph
Messages: 10
Registered: September 2012
Karma: 0
Junior Member
Truth be told I don't know anything about regex. I threw together an example of how I think I can step though a string to do this.

$actions = array();
$done = false;
while (!$done) {
$start = strpos($content, "[");
$end = strpos($content, "]");
$equal = strpos($content, "=");
$key = "";
$value = "";
if ($equal != false && $equal > $start && $equal < $end) {
$key = substr($content, $start + 1, $equal - $start);
$value = substr($content, $equal + 1, $end - $equal);
if (array_key_exists($key, $actions)) {
if (is_array($actions[$key])) {
$actions[$key][] = $value;
}else{
$existing_value = $actions[$key];
$actions[$key] = array ($existing_value, $value);
}
}else{
$actions[$key] = $value;
}
str_replace("[" . $key . "=" . $value . "]", "", $content, 1);
}else{
$key = substr($content, $start + 1, $end - $start);
$actions[$key] = true;
str_replace("[" . $key . "]", "", $content, 1);
}
if ($start == false || $end == false) {
$done = true;
}
}

This should...in theory find the first set of brackets if there is a "=" it should separate out the part before the = as the key and the part after as the value, add to an array, using a sub array if the same key is duplicated with different values. If not it will just store the text as the key with a value of true. It will then replace the full sub-string from [ to ] with null effectively removing it then search for the next one until it finds no more bracket sets.

Any feedback, ideas on a better implementation?

On Tuesday, March 19, 2013 6:06:28 AM UTC-7, Jerry Stuckle wrote:
> On 3/19/2013 12:12 AM, CloudPress wrote:
>
>> I have a string that consists of several key value pairs such as [key=value], a given key may appear more than once.
>
>>
>
>> For example a string of:
>
>>
>
>> "Hello world, [key=value] [key2=value1] This is just a test. [key=value2]"
>
>>
>
>> I want to do two things, one I want an easier way to view the key value pairs, I am thinking an array
>
>>
>
>> array ('key' => array ('value', 'value2'), 'key2' => 'value1');
>
>>
>
>> Secondly I want the key/value pairs removed from the string so I would get the array and a new string that would look like this:
>
>>
>
>> "Hello world, This is just a test."
>
>>
>
>> What would be the easiest way to accomplish this?
>
>>
>
>
>
> Maybe a regex?
>
>
>
> --
>
> ==================
>
> Remove the "x" from my email address
>
> Jerry Stuckle
>
> JDS Computer Training Corp.
>
> jstucklex(at)attglobal(dot)net
>
> ==================
Re: split array and string from string (trust me it will make sense when you read) [message #180812 is a reply to message #180811] Wed, 20 March 2013 00:45 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 3/19/2013 8:34 PM, CloudPress wrote:
> On Tuesday, March 19, 2013 6:06:28 AM UTC-7, Jerry Stuckle wrote:
>> On 3/19/2013 12:12 AM, CloudPress wrote:
>>
>>> I have a string that consists of several key value pairs such as [key=value], a given key may appear more than once.
>>
>>>
>>
>>> For example a string of:
>>
>>>
>>
>>> "Hello world, [key=value] [key2=value1] This is just a test. [key=value2]"
>>
>>>
>>
>>> I want to do two things, one I want an easier way to view the key value pairs, I am thinking an array
>>
>>>
>>
>>> array ('key' => array ('value', 'value2'), 'key2' => 'value1');
>>
>>>
>>
>>> Secondly I want the key/value pairs removed from the string so I would get the array and a new string that would look like this:
>>
>>>
>>
>>> "Hello world, This is just a test."
>>
>>>
>>
>>> What would be the easiest way to accomplish this?
>>
>>>
>>
>>
>>
>> Maybe a regex?
>>
>>
> Truth be told I don't know anything about regex. I threw together an example of how I think I can step though a string to do this.
>
> $actions = array();
> $done = false;
> while (!$done) {
> $start = strpos($content, "[");
> $end = strpos($content, "]");
> $equal = strpos($content, "=");
> $key = "";
> $value = "";
> if ($equal != false && $equal > $start && $equal < $end) {
> $key = substr($content, $start + 1, $equal - $start);
> $value = substr($content, $equal + 1, $end - $equal);
> if (array_key_exists($key, $actions)) {
> if (is_array($actions[$key])) {
> $actions[$key][] = $value;
> }else{
> $existing_value = $actions[$key];
> $actions[$key] = array ($existing_value, $value);
> }
> }else{
> $actions[$key] = $value;
> }
> str_replace("[" . $key . "=" . $value . "]", "", $content, 1);
> }else{
> $key = substr($content, $start + 1, $end - $start);
> $actions[$key] = true;
> str_replace("[" . $key . "]", "", $content, 1);
> }
> if ($start == false || $end == false) {
> $done = true;
> }
> }
>
> This should...in theory find the first set of brackets if there is a "=" it should separate out the part before the = as the key and the part after as the value, add to an array, using a sub array if the same key is duplicated with different values. If not it will just store the text as the key with a value of true. It will then replace the full sub-string from [ to ] with null effectively removing it then search for the next one until it finds no more bracket sets.
>
> Any feedback, ideas on a better implementation?
>

That's the hard way. Look up a regex tutorial - there are several good
ones on the internet. What you're looking for shouldn't be that hard
(even I could probably come up with something even though I'm by far not
an expert in regex).

Then look at the preg_xxx() functions in PHP.

The only thing to remember is in PHP you need a separator character at
the start and end of the regex string, i.e. '!regex goes here!'. It
doesn't have to be an ! - it can be any character, preferably one not in
the regex.

And please don't top post. This newsgroup (and most of usenet) uses
bottom or interleaved posting. Thanks.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: split array and string from string (trust me it will make sense when you read) [message #180813 is a reply to message #180812] Wed, 20 March 2013 00:56 Go to previous messageGo to next message
cph is currently offline  cph
Messages: 10
Registered: September 2012
Karma: 0
Junior Member
I guess the real question is is there anything to be gained by using regular expressions. besides cleaner code? Because if this will work without any noticeable performance difference compared to regex it might just be easier to stick to this.
Re: split array and string from string (trust me it will make sense when you read) [message #180814 is a reply to message #180813] Wed, 20 March 2013 01:21 Go to previous messageGo to next message
Christoph Becker is currently offline  Christoph Becker
Messages: 91
Registered: June 2012
Karma: 0
Member
CloudPress wrote:

> I guess the real question is is there anything to be gained by using
> regular expressions. besides cleaner code? Because if this will work
> without any noticeable performance difference compared to regex it might
> just be easier to stick to this.

IMO it's not so much about cleaner code, than about performance. Using
regexp's will shift all the hard work from PHP to C, which is much
faster. Consider the code you've posted: it calls strpos(), substr(),
str_replace() et al. in a loop multiple times; for sure not the fastest
way of doing things.

A quick example, what can be accomplished with a simple regexp:

>>> $str = 'Hello world, [key=value] [key2=value1] This is just a
test. [key=value2]';
>>> echo preg_replace('/\[key[0-9]*=value[0-9]*\]/', '', $str);
Hello world, This is just a test.

To fill the array of key/value pairs, you can start with:

>>> preg_match_all('/\[(key[0-9]*)=(value[0-9]*)\]/', $str, $m);
>>> var_dump($m)

--
Christoph M. Becker
Re: split array and string from string (trust me it will make sense when you read) [message #180815 is a reply to message #180813] Wed, 20 March 2013 01:43 Go to previous message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 3/19/2013 8:56 PM, CloudPress wrote:
> I guess the real question is is there anything to be gained by using regular expressions. besides cleaner code? Because if this will work without any noticeable performance difference compared to regex it might just be easier to stick to this.
>

Cleaner code is (almost) always better. The more work I can have the
system do, the easier it is to code and maintain.

Fewer "gotchas" also.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Thorny string translation issue.
Next Topic: PDO based Abstraction Layer for MySQL with Caching
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 12:34:40 GMT 2024

Total time taken to generate the page: 0.03473 seconds