我有一些像
这样的文字<<<<((((sports====1000))))>>>>
或
<<<<((((sports====1000))))((((librarys====2000))))>>>>
我的问题是我从
获取了这个文本text[0][0] = 'sports';
text[0][1] = '1000';
text[1][0] = 'library';
text[1][1] = '2000';
任何帮助将不胜感激。提前谢谢。
答案 0 :(得分:2)
您可以尝试拆分除内容之外的所有内容,然后删除数组中的空元素。
s="<<<<((((sports====1000))))((((librarys====2000))))>>>>";
s.split(/[<()>=]/).filter(function(ele){if (ele!="") return true});
=> ["sports", "1000", "librarys", "2000"]
这是一种黑客行为,因为我不知道你的文字的语法,这可能会或可能不适合你。
另一个黑客:
s="<<<<((((sports====1000))))((((librarys====2000))))((((no_value====))))>>>>";
arr = s.replace("====)","====nil").
split(/[<\(\)>=]/).
filter(function(ele){if (ele!="") return true});
var res=[];
for(var i = 0; i < arr.length; i+=2) { res.push([arr[i],arr[i+1]]); }
res
=> [["sports", "1000"], ["librarys", "2000"], ["no_value", "nil"]]
答案 1 :(得分:0)
\({4}(.+?)={4}(.+?)\){4}
请参阅this example
答案 2 :(得分:0)
试试这段代码。
var test = "<<<<((((sports=====))))((((====2000))))((((hall====2000))))>>>>";
textAfterSplit1 = test.split(/[(<>)]/);
var myarray = [];
for (i=0; i <(textAfterSplit1.length); i++){
textAfterSplit2 = textAfterSplit1[i].split(/[=]/);
if (textAfterSplit2[0] == null){
textAfterSplit2[0]= "";
}
if (textAfterSplit2[1] == null) {
textAfterSplit2[1]= "";
}
myarray.push([textAfterSplit2[0],textAfterSplit2[1]]);
}
document.write(myarray[0][0]);
document.write(myarray[0][1]);
document.write(myarray[1][0]);
document.write(myarray[1][1]);
预期输出是:
sports2000
它适用于所有场景。希望这可能有所帮助。干杯!