Tell whether the string is valid key. Only the characters A-Za-z0-9- may be used in key names. See
assert(IniLikeFile.isValidKey("Generic-Name")); assert(!IniLikeFile.isValidKey("Name$")); assert(!IniLikeFile.isValidKey(""));
See Implementation
Tell whether the string is valid key. Only the characters A-Za-z0-9- may be used in key names. See