Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my $string = "100 JQR";
my $first_bit = substr( $string, 0, index( $string, ' ' ) );
I like that one the best I think, I'll use that from now on.PaulTEG said:Code:($thebitIwant, $thebitIdont)=split / /, $variable;