Method code for $string.valid_ident()

[Turn on line numbering]
arg str;

return strsed(str, "[^a-z0-9_]+", "", "g") == str;

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

Tlon