gpt4 book ai didi

javascript - 按加号和减号分割

转载 作者:行者123 更新时间:2023-11-28 11:30:59 26 4
gpt4 key购买 nike

如何拆分从“+”、“-”、“x”和“^”上的文本输入获得的变量?

JavaScript

function integralinput() {
var a = document.getElementById("input").value;
console.log(a);
var b = a.split("x" + "^" + "+" + "-");
console.log(b);
}

html:

<input id="input" type="text"><label for="function">Funktion</label>
<input type="button" onclick="integralinput()" value="Run">

最佳答案

使用正则表达式

var b = a.split(/[x^+-]/)

关于javascript - 按加号和减号分割,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48542009/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com