I have the following tire sizes in my database, all formatted in different ways. Here are a few examples:
225/50R17
255/45R18/XL
P155/80R13
What I need is to separate them in 3 parts, and JUST the numbers.
So the first one should be: 225 / 50 / 17 all separate variables. Second one should be: 255 / 45 / 18 and ignore the XL. And the third one obviously should be 155 / 80 / 13
Does anyone know how I can write a function or whatever needs to be done to just grab those numbers?
Thank you!