Rogue Assassin 2007
私は言うことから年を取り、戻る方法を理解することができないようです:
moviename = "Rogue Assassin" 'Whitespace doesn't matter
movieyear = "2007" 'Whitespace doesn't matter
しかし、私はそれを動作させることができません。私は次のことを試みてきました:
If System.Text.RegularExpressions.Regex.IsMatch(fn, "[0-9][0-9][0-9][0-9]") Then 'Is this right?
Dim mtemp As String() = fn.Split(" ") 'Movie temp array
myear(0) = mtemp.Last 'Attempting to set year to the last split
For Each z As String In mtemp 'Adding the other elements in mtemp together to remake the title
If z IsNot mtemp.Last Then
mtitle(0) = z & " " 'Movie title
Else
Exit For
End If
Next
...
Else
...
End If
どんな助けでも大歓迎です!