Skip to content

Instantly share code, notes, and snippets.

@skounis
Last active October 5, 2015 11:31
Show Gist options
  • Save skounis/8992faec969664014ef6 to your computer and use it in GitHub Desktop.
Save skounis/8992faec969664014ef6 to your computer and use it in GitHub Desktop.
Shoutcast Ionic Tutorial - Parse 7.html
function parseShoutcastResponse(html) {
var content = html.match(contentRegex)[1];
var parts = content.split(',');
if (parts.length < 7 || !parts[6]) {
return null;
}
return parts[6];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment