I'm trying to find the number that is in the fourth position of a string of numbers separated by semicolons
The example string is as follows:
84;29.02964;28.87731;25.28935;0;-0.1523228;3.735915;27;27;349;27;27;413;27;27;371;26;26;373;26;26;420;27;27;381;242;402;373;345;420;443;264;431;400;229;381;361;324;446;430;274;424;396;726.5;760;5.14;0;6.19;4.99;0;5.57;5.02;0;4.96;5.06;0;5.03;4.9;0.01;5;5.02;0;5.03;8.17;0;4.84;8.48;0;5.21;3.72;0;6;6.17;0.01;3.83;3.83;0;5.72;4.01;0;5.13;0.01;6.05;0;0;0;0.01;0;6.02;0.02;0;0;8.16;0;5.76;0.01;0;0.01;10.01;0.02;5.9;0.01;0;0;0;0.02;4.34;0.01;7.76;0;0.02;0;5.96;0.02;0;0;0.01;0;0;0;0;0;0;0;0;0;0;757;
I've done it with
*[\-\d\;]**
But logically it does not work.
Any ideas? Thanks