This probably was asked millions of times, but I can't find a proper answer, really.
Basically, I have a huge .csv file to download data from and to insert it into a local one. It has 10 columns, and the third one is just a string, which always has the same "type" of string. something like: 123/45K67.
I just want to split it into three columns: 123, 45, K67 and exclude the slash totally.
Sorry for bad formatting, writing from mobile.
preg_match("/(\d{3})\/(\d{2})(\w\d{2})/", "123/45K67", $matches);(Super basic example, you could clean the regex up) - Example