Good day!
PHP question. There is a line: 7 x 17 ET50, in which the values of the figures may vary. I need to find a function that would cut, for example, the numbers after the "x" and before the "ET". I tried this: $d5[0] = substr($d5[0], strpos($d5[0], 'x'), 4);
But this design cuts off the digits TOGETHER with X, but I do not need X.
7 х 17 ET50
line? And you should probably look in the direction of regular expressions. - Visman