I'm trying to spot a parameter that is an empty string. The weapon of choice is regexp:first_match/2 which is used in the code that parses the config file. In other worlds, "^$" matches an empty string. In Erlang, not so: 5> regexp:first_match("","^$"). nomatch What do I use instead? Vik :v)