Je veux obtenir un sous-ensemble d'une chaîne en Javascript. Actuellement, je sais seulement comment stocker la chaîne entière :
J'ai ceci comme une variable JSON avec un appel à foo :
foo({"results":[
"<div id=\"following\"><span><a href=\"http://twitter.com/barackobama\">Obama</a></span></div>"
]})
Et voici ma fonction de rappel :
function foo(o){
var entireDiv = o.results[0];
}
How do I store just the "< a href = ... > ... < / a> " en tant que chaîne de caractères en Javascript ?