如何从这种格式的字符串转换:
PTDHMS
例如:
<time datetime="PT15H10M">
(我从解析电影的持续时间来自imdb)到可读的格式如HH:MM
尝试:
TimeSpan t = System.Xml.XmlConvert.ToTimeSpan("PT15H10M");