I have a MySQL table column with a lot of rows.
Below is a sample of the data format:
TEST-DATA (ID:123)
How can I remove the part (ID:123), using PHP regular expressions?
Please note that (ID:123) contains different numbers for each row in the table column.
TESTDATA2(ID:1)
DATAAGAIN(ID:78)
MOREDATA(ID:45)
...