因此我必须从文件中读取歌曲的时间并将其存储为分钟和秒。例如,我有一个这样的文件:
What you know?-T.I.
Rap
4.30
当我阅读它时,我使用它:
_strSong(intCount) = objReader.ReadLine()
_strGenres(intCount) = objReader.ReadLine()
现在我不知道如何将4号作为分钟,将30作为秒。有什么帮助吗?
答案 0 :(得分:1)
您可以将该行读入临时字符串变量,然后使用String.Split
和Integer.Parse
将该行分为几分钟和几秒:
Dim line As String = objReader.ReadLine()
Dim parts As String() = line.Split("."c)
Dim minutes As Integer = Integer.Parse(parts(0))
Dim seconds As Integer = Integer.Parse(parts(1))