Coupez le texte après un certain mot dans JS
var new_str = str.substring(0, str.indexOf("Example"));
Cloudy Capuchin
var new_str = str.substring(0, str.indexOf("Example"));