in reply to string does not contain

... and as nobody mentioned it so far, if you just match against a literal string like 'hello', then you could also use the index function:
# if 'hello' not contained in $string if ( index($string, 'hello' ) == -1) { # do something }

-- Hofmator