What I need to do is to get the whole input string, if it doesn't contain another string.
To be more clear (php code, doesn't really matter, the regexp is important):
Let's say the string we want to negate is "home".
preg_match($unknownReg, "This is a home bla bla", $part);
echo $part; // I need to echo "";
preg_match($unknownReg, "This is a car", $part);
echo $part; // I need to echo "This is a car"
I'm aware of solutions like strpos (for php), but I'd like a reg for it (because not knowing it burns be from inside :)) ).