Extracting digits before and after the comma
Hi, I'm struggling from extracting digits from a string before and after the commahow can I get 0.98 and 0.97 from a string?string = "A_BD_CEEE:0.98,0.975620708";
first_number = Num( Regex( string, "(\d\d?\d?):", "\1" ) );
expected outfirst_number = 0.98second_number = 0.975 thanks