如何从检索到的变量中仅提取 YYYY-MM-DD?

How can I extract just YYYY-MM-DD from the retrieved variable?

如果我有:

${time} = OperatingSystem.Get Modified Time @{Files}[${i}]
${onlyDate} = ???

我怎样才能轻松地从 ${time} 获取 YYYY-MM-DD 而不是 YYYY-MM-DD HH:MM:SS?

您可以使用 DateTime Library 试试这个: ${date} = Convert Date ${date} result_format=%Y-m%-d% 请参阅 - https://robotframework.org/robotframework/latest/libraries/DateTime.html#Date%20formats