import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
public static void main(String[] args) {
final String regex = "(?:(https?):\\/\\/)?(?:(?:www|m|api)\\.)?(soundcloud\\.com|snd\\.sc)\\/+([a-zA-Z0-9\\-\\.]+\\/*[a-zA-Z0-9\\-\\.]*\\/*[a-zA-Z0-9\\-\\.]*)";
final String string = "https://soundcloud.com/deejay-la-x\n"
+ "https://soundcloud.com/deejay-la-x/my-christmas-mix-with-tarmac\n"
+ "sdasdddd\n"
+ "https://soundcloud.com/golden-rose-428706194/drip-vol2\n"
+ "https://soundcloud.com/karyomusic/karyo-my-neck-lick-it?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\n"
+ "https://soundcloud.com/rnjonesnc/sets/30-flights-of-elevation\n"
+ "https://on.soundcloud.com/5dTNx\n"
+ "<iframe width=\"100%\" height=\"300\" scrolling=\"no\" frameborder=\"no\" allow=\"autoplay\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/923619058&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true\"></iframe><div style=\"font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;\"><a href=\"https://soundcloud.com/kaytranada\" title=\""KKAAYYTTRRAA"\" target=\"_blank\" style=\"color: #cccccc; text-decoration: none;\">"KKAAYYTTRRAA"</a> ยท <a href=\"https://soundcloud.com/kaytranada/love-is-stronger-than-pride-kaytra-edit\" title=\"LOVE IS STRONGER THAN PRIDE (KAYTRA EDIT)\" target=\"_blank\" style=\"color: #cccccc; text-decoration: none;\">LOVE IS STRONGER THAN PRIDE (KAYTRA EDIT)</a></div>\n\n\n\n\n";
final Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE | Pattern.CASE_INSENSITIVE);
final Matcher matcher = pattern.matcher(string);
while (matcher.find()) {
System.out.println("Full match: " + matcher.group(0));
for (int i = 1; i <= matcher.groupCount(); i++) {
System.out.println("Group " + i + ": " + matcher.group(i));
}
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html