How to use a regular match to a country with a 'horse' in its name?

var text = `
        
       
    
`;

text.match(/[\u4e00-\u9fa5]+[\u4e00-\u9fa5]+/g);
//["", "", ""]

the previous code matches some countries with horses in their names, but this only matches the "br" at the beginning of the "horse" in the country with the name "in the middle", but not the "Panama" at the end of the
horse word, and can not match the
if you want to match, how to write it. Thank you for the help of the old driver
May every old driver be always young, always filled with tears, and never be deducted points


replace + with *
+ for one or more times
* for 0 or more times


    /[\u4e00-\u9fa5]*[\u4e00-\u9fa5]*/g

text.match(/[\u4e00-\u9fa5]*[\u4e00-\u9fa5]*/g);
["", "", "", "", "", "", "", "", ""]

text.match(/(?=[^\s]*)[^]+/g);
Menu