awk ' { if (NR==1){ if( $1 ~ /^[A-Za-z0-9]/) {print $0} } }' file1
sed '1q' file1 | grep '^[a-zA-Z0-9]'