Kdb:如果少于 2 位数字,则将前导零添加到字符串中

Kdb: Pre-pend Leading Zero to String if Less Than 2 Digits

我从日期时间原子中提取了年、日、月、时、分和秒。如何在位数小于 2 的日、月、时、分和秒前添加前导零?

我有这样的东西:

  year:string`year$inDateTime;
  day:string`dd$inDateTime;
  if[1=(count day);day:("0",day)];
  month:string`mm$inDateTime;
  if[1=(count month);month:"0",month];
  hour:string`hh$inDateTime;
  if[1=(count hour);hour:"0",hour];
  minute:string`uu$inDateTime;  
  if[1=(count minute);minute:"0",minute];
  second:string`ss$inDateTime;
  if[1=(count second);second:"0",second];

但是有没有更简洁的方法来实现这一点?

这一行应该能达到您的要求:

"0"^-2$string`dd`mm`hh`uu`ss$x

如果你想分配你的值,你可以使用这个:

`day`month`hour`minute`second set'"0"^-2$string`dd`mm`hh`uu`ss$x

希望对您有所帮助!