Quantcast
Channel: Kommentare zu: Uploaded.to API – JAVA
Viewing all articles
Browse latest Browse all 21

Von: gargamel84

$
0
0

Okay, habs. Die RegEx muss geändert werden, so dass vor “stor” auch noch Zeichen sein dürfen:

Vorher:
Matcher mat = Pattern.compile(“http://stor\\d+.uploaded.net/dl/([0-9a-z-]+)”).matcher(content);

Nachher:
Matcher mat = Pattern.compile(“http://([0-9a-z-]+)stor\\d+.uploaded.net/dl/([0-9a-z-]+)”).matcher(content);


Viewing all articles
Browse latest Browse all 21