<?php // $contentLines = file('path/to/content.txt'); $contentLines = [ 'Weight 229.6104534866 g', 'Energy 374.79170898476 kcal', 'Total lipid (fat) 22.163422468932 g', 'Carbohydrate, by difference 13.641848209743 g', 'Sugars, total 4.3691034101428 g', 'Protein 29.256342349938 g', 'Sodium, Na 468.99386390008 mg', ]; var_export( array_map( fn($line) => sscanf( $line, '%[^0-9] %f %s', ), $contentLines ) );
You have javascript disabled. You will not be able to edit any code.