Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从西班牙语网站自动检索数据。
我得到以下字符串作为输入Viernes, 19 de Abril del 2013
Viernes, 19 de Abril del 2013
我想把日期转换成这种格式#4/19/2013#。
#4/19/2013#
您需要从日期中删除“del”,然后使用DateTime.Parse。
DateTime.Parse("Viernes, 19 de Abril 2013", new CultureInfo("es-ES"))
返回4/19/2013。
4/19/2013