close
Question by John C: What is the php regular expression to get everything before a certain character?
What do you think? Answer below!
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.
Best answer:
Answer by New S
Regular expressions are not used for this. Use tokenizing - function strtok, I believe.
What do you think? Answer below!
全站熱搜