I'm trying to find two cases in a test string.
_Large and jpeg
Here is my string :
E:\Music Test Folder\Lamb of God\Wrath\AlbumArt_{F5969BAB-11BC-49E0-9B56-B6E9654204B7}_Large.jpeg
And here is my expression:
Match large = Regex.Match(file, @"^.*(_Large).(jpeg)$/i", RegexOptions.IgnoreCase);
I cannot get a match.
What am I doing wrong?