I did some tests using this slightly edited code:
try {
Scanner sc = new Scanner(new URL("https://svenskaspel.se/p4.aspx?pageid=264").openStream(),"iso-8859-1");
while(sc.hasNextLine()){
String s = sc.nextLine();
Matcher m = Pattern.compile("<SPAN\\b[^>]*CLASS=").matcher(s);
if (m.find()) {
System.out.println(m.group(0));
//System.out.println(s);
}
}
} catch (IOException e) {
System.out.println("Ouch! " + e);
}
It returns results but not the exact results you are looking for.
I think you need to play with your regular expression.