What is the php regular expression to get everything before a certain character?
Posted on May 27th, 2010 in Programming & Design | 4 Comments »
John C asked:
For instance, I have the following string:
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.


