Jump to content

break up a string by two specific characters in differing locations


turpentyne

Recommended Posts

This is probably a simple one. I just couldn't find a tutorial to the specific thing I'm trying.

 

I have a string that looks like: "(abbreviated name with.) second abbrev. name."

 

I'm trying to find a way to break this apart so I can have:

 

$var1 = "abbreviated name with."

$var2 = "second abbrev. name."

 

I've looked at substr and a couple others and I'm not sure quite how to do this, because the ')' could be in a differing location.

 

 

 

hmmm.. maybe I spoke too soon... This worked for me. I assume this is an ok/secure way to do it?

 


$author = "(abbreviated name with.) second abbrev. name."
$splitter = split('[()]', $author);

$firstname = $splitter[1];

$secondname = $splitter[2];

echo $firstname.' and '.$secondname;

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.