I have a file with non standard format and i want to read specific parts of it, that consist of real or integer numbers.
str1='N.ELBETI.150.L10';
str2='KARDIA_3.150.L20';
str3='axeloos1.15.75.L20';
str4='florina2.6.3.L2.1';
i just want to store the numbers in the central part and at the end of each string, i.e.:
150 and 10 from str1, 150 and 20 from str2, 15.75 and 20 from str3, 6.3 and 2.1 from str4 i have tried several ways but i cannot. Can you help me ?