编程语言
首页 > 编程语言> > 如何在Java中提取多项式系数?

如何在Java中提取多项式系数?

作者:互联网

以字符串-2x ^ 2 3x ^ 1 6为例,如何从存储在字符串中的等式中提取-2,3和6?

解决方法:

没有给出确切的答案,但有一些提示:

>使用replace meyhod:

全部替换 – 用 – .
>使用split方法:

// after replace effect
String str = "+-2x^2+3x^1+6"
String[] arr = str.split("+");
// arr will contain: {-2x^2, 3x^1, 6}

>现在,每个索引值可以单独拆分:

String str2 = arr[0];
// str2 = -2x^2;
// split with x and get vale at index 0

标签:text-parsing,java,string,polynomial-math
来源: https://codeday.me/bug/20190927/1824907.html