Can you someone tell me how to determine if a string has more than x number of consectutive spaces?
Thanks a lot.
Mike.
use:
if(preg_match("/\s\s+/", $line)){ ...... }