std.string.chomp error

bearophile bearophileHUGS at lycos.com
Mon Aug 9 18:08:13 PDT 2010


Jonathan M Davis:
> Why, because it should be
> 
> if(delimiter is null)
> 
> 
> or just
> 
> if(!delimiter)

if (delimiter.length == 0)
Or 
if (!delimiter.length)

Bye,
bearophile


More information about the Digitalmars-d-learn mailing list