[^.]+)[^\"]+)\"", RegexOptions.Singleline)
imageMatch = imageRegex.Matches(resultPage)[0] //Expecting only one match
id = imageMatch.Groups["id"].Value
size = int.Parse(imageMatch.Groups["size"].Value)
full = imageMatch.Groups["full"].Value
titleRegex = Regex("| (?[^<]+)", RegexOptions.Singleline)
title = titleRegex.Matches(resultPage)[0].Groups["title"].Value //Expecting only one match
coverart.Add(String.Format("http://revhq.com/images/covers/50/{0}.gif", id), artist + " - " + title, size, size, String.Format("http://revhq.com/images/covers/{0}", full))
static def GetResult(param):
return param
|