如何从 flutter 中的字符串日期“22 May 2022”中获取日期名称

How can I get day name from string date '22 May 2022' in flutter

我是 Flutter 的初学者,我想从日期中获取日期名称 [like Sunday],我从 api 中获取日期,它基本上是一个字符串,如 '22 May 2022'

从这个日期 '22 May 2022' 我怎样才能得到它?谁能帮我?任何帮助都应该受到赞赏

我已经试过了,但对我不起作用。

试试这个:

final dateName = DateFormat('EEEE').format(DateFormat("DD MMMM yyyy").parse('22 May 2022'));

final dateName = DateFormat('MEd').format(DateFormat("DD MMMM yyyy").parse('22 May 2022'));

你可以在那里查看所有格式日期 https://pub.dev/documentation/intl/latest/intl/DateFormat-class.html