You can achieve that with:
SELECT CAST(pcs_meter AS UNSIGNED) FROM material
That will work since your value goes first (and MySQL will truncate non-significant symbols from the right). If your field can contain negative values, change UNSIGNED to SIGNED
SELECT +SUBSTRING_INDEX(pcs_meter, ' ', 1) FROM material;?