Jump to content

str explode between symbols?


EchoFool

Recommended Posts

Hey

 

Im trying to use a str_explode but on the basis that the words are "between" the symbol.... heres what i mean:

 

Say i got:

 

#username1#usrname2#

 

becomes username1 and username2

 

username1#username2# is username2 only.

 

and username1#username2 is nothing.

 

I want to seperate with :

 

print_r(explode('#', $str, 2));

 

But specifically with the picky method involved, how do i edit the explode to do it ?

Link to comment
Share on other sites

You must be doing something wrong, cuz i get the right output

<?php
  function delim_explode($delim,$string)
  {
      if(in_array($delim,array('/','\\','[',']','(',')'))) $delim="\\{$delim}";
      $pattern="((?<=$delim).*?(?=$delim))+";
      if(preg_match_all("/{$pattern}/",$string,$matches))
      {
          $matches=$matches[1];
      } else
        $matches=array();
      return $matches;
  }
  function sasa_explode($delim,$string)
  {
      $out = explode($delim, $string);
      array_shift($out);
      array_pop($out);
      return($out);
  }
  
  header('Content-Type: text/plain');
  var_dump(delim_explode('#','#username1#username2#'));
  var_dump(delim_explode('#','username1#usrname2#'));
  var_dump(delim_explode('#','#username#usrname2# wasup guys !'));
  var_dump(delim_explode('#','no delimeter'));
  var_dump(sasa_explode('#','#username1#username2#'));
  var_dump(sasa_explode('#','username1#usrname2#'));
  var_dump(sasa_explode('#','#username#usrname2# wasup guys !'));
  var_dump(sasa_explode('#','no delimeter'));
?>

 

I do like sasa's method, simple :)

Link to comment
Share on other sites

How about the following?

 

$str = 'abc#username#username2#foo';

// Here's the magical voodoo!..
$split = array_slice(explode('#', $str), 1, -1);

print_r($split); 
/*
Array
(
    [0] => username
    [1] => username2
)
*/

Link to comment
Share on other sites

Tried that with:

 

$text = '#username#usrname2# wasup guys !';

 

     $out = explode('#', trim($text, '#'));
     $string = $out[0];
    Echo $string;

 

But that doesn't seem to work.

 

You are missing something somewhere. My simple code does indeed work.

 

Full script here:

 


$text = '#username#username2# wasup guys!';
$string = explode ('#', trim($text, '#'));
print_r($string);

 

Output using php -f

[david@penny ~]$ php -f explode.php 
Array
(
    [0] => username
    [1] => username2
    [2] =>  wasup guys!
)

 

 

Link to comment
Share on other sites

gizmola, given the text from your last post, EchoFool doesn't want " wasup guys!" to be one of the items since it is not surrounded by # characters.

 

That's what I get for not reading the OP carefully enough.  Thanks Salathe... you are right, I missed that nuance entirely.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.