Jump to content

What is the php regular expression to get everything before a certain character?


kanch33

Recommended Posts

For instance, I have the following string:

 

table:column

 

I need to get "table" as the result of the php regular expression.

 

So, I need everything before the ":" symbol

 

After that regular expression is performed, I would also like to get everything after the ":" symbol, or "column" as well.

explode

 

$string = "table:column";
list($table, $column) = explode(":", $string);

echo $table . " " . $column;

 

Will hopefully get you started.

 

EDIT:

Still posting as I used the list and is a different method to accomplish what the user wants :)

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.