I have a string that's generated that I'm trying to import into MySQL. How do I take a line that has:
Number, Page, Section, Reviewer, Remark
which can be:
1, 2, 3, reviewer_name, remark_text
and trim everything before the first comma and the comma itself, then trim the reviewer_name and comma so I end up with:
2, 3, remark_text
I have been searching through str_ commands, replace commands, etc. and just can't find what I need.
Thanks!
PS I do not want to use arrays for this unless absolutely necessary.