Tony Hobbins wrote: > Hi all, > > I hope this question is not as stupid as it sounds. > > What is the most elegant guard construct for testing for a string? There isn't any. Need to do it through case statement case is_string(L) of true -> stuff(L); /klacke