private str zeroIfEmpty(str _input)
{
return _input ? _input : '0';
}
...
io.write(... this.zeroIfEmpty(custTable.CustGroup)));
while select custTable
{
if (!custTable.custGroup)
{
custTable.custGroup = "0";
}
}
André Arnaud de Cal...
292,162
Super User 2025 Season 1
Martin Dráb
230,962
Most Valuable Professional
nmaenpaa
101,156