Method code for $string.is_negative()

[Turn on line numbering]
arg str;

if (match_regexp(str, "^(no|n|false|f|none|nobody|nowhere|0)$"))
    return 1;
return 0;

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon