如何在DatetTime Library Robotframework中将日期转换为从Month返回前导零?

时间:2018-06-14 09:19:31

标签: robotframework

我有以下代码

${d}=    Get Current Date    result_format=%m/%d/%Y
log  ${d}

,输出

  

2018年6月14日

在我的预期中我想要

  

2018年6月14日

由于

1 个答案:

答案 0 :(得分:0)

你能试试吗

${d}=    Get Current Date    result_format=%#m/%d/%Y
log  ${d}

使用'#'在月前摆脱零。参考link

在Windows7中测试