我有这个 javascript 字符串:
"<!--:fr-->Photos<!--:--><!--:en-->Pictures<!--:-->"
而且我需要解析它以获取不同字符串中的每种“语言”。理想的情况是具有如下功能:
function getText(text, lang){
// get and return the string of the language "lang" inside the multilang string "text"
}
我可以这样称呼:
var frenchText = getText("<!--:fr-->Photos<!--:--><!--:en-->Pictures<!--:-->","fr");
// and would return:
// frenchText = Photos
如果有人知道这样做的好方法,可能使用一个非常棒的正则表达式!