如何将从 IMPORTXML 中提取的日期转换为实际日期

How to convert dates pulled from IMPORTXML to actual dates

我正在从 导入 45 天的天气预报 https://weather.interia.com/long-term-forecast-chicago,cId,49700

日期如下:

1.11
2.11
3.11
4.11
5.11
6.11
7.11
8.11
9.11
10.11
11.11
12.11
13.11
14.11
15.11
16.11
17.11
18.11

如何将这些转换为实际日期? TO_DATE 无效。感谢您的帮助。

尝试:

=ARRAYFORMULA(DATE(YEAR(TODAY()), INDEX(SPLIT(IMPORTXML(
 "https://weather.interia.com/long-term-forecast-chicago,cId,49700", 
 "//span[@class='date']"), "."),,2), INDEX(SPLIT(IMPORTXML(
 "https://weather.interia.com/long-term-forecast-chicago,cId,49700", 
 "//span[@class='date']"), "."),,1)))