0
我試圖在字符串中獲得電影名稱(沒有小圓點)。Autohotkey獲取正則表達式之前的所有內容
例如:
「Matrix.1999.LIMITED.720p.BluRay」 將是 「黑客帝國」
另外, 「Max.Steel.2016.1080p.BluRay」 將是 「最大鋼」
我已經做了以下,但其沒有工作
Haystack =Max.Steel.2016.1080p.BluRay
TheYear := RegExMatch(Haystack, "\d{4}\b")
StringGetPos, YearPostion,Haystack,%TheYear%
StringLeft, MovieName,Haystack,%YearPostion%
MsgBox, %MovieName%
謝謝你的幫助 –