Skip to content

Instantly share code, notes, and snippets.

@victorkurauchi
Created July 24, 2014 22:48
Show Gist options
  • Select an option

  • Save victorkurauchi/8701b092126f34abb91a to your computer and use it in GitHub Desktop.

Select an option

Save victorkurauchi/8701b092126f34abb91a to your computer and use it in GitHub Desktop.
var str = 'http://www.ultrafarma.com.br/produto/detalhes-21980/noctal_2mg_20_cp__b1_.html'
, word = 'detalhes-'
, reference = ''
, idx = str.indexOf(word);
alert(idx);
if (idx > -1) {
var my = str.substr(idx + word.length);
var limite = my.match(/\//ig);
var ok = my.split(limite);
alert(ok[0]);
} else {
reference = 'none';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment