-1
我想在JavaScript中分割此字符串。按模式分割的字符串
我試試吧:
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to display the array values after the split.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
{
var str = "<new_a><new_b><sb_c>";
var res = str.split("<");
document.getElementById("demo").innerHTML=res;
}
</script>
</body>
</html>
結果: new_a>,new_b>,sb_c>
我想我的結果:new_a,new_b,sb_c
我該怎麼辦?
「想要」,而不是「想要」 –
*「但我不喜歡它!!!!!!」*不是一個有用的問題描述。結果怎麼樣你不喜歡?你會喜歡什麼?什麼阻止你修改你的代碼來做你喜歡的事情? –
你想要什麼? –