gpt4 book ai didi

java - 有没有办法在字符值之前停止正则表达式并在该字符之后启动另一个正则表达式?

转载 作者:行者123 更新时间:2023-11-29 09:03:28 27 4
gpt4 key购买 nike

我正在尝试删除字符前的数字,例如 a-z*/+-,然后删除该字符之后但不同字符之前的任何数字。这是我的。

    s= s.replaceAll("(\\d+)", "");
s= s.replace("*", r.toString());

其中s是我需要读取的字符串,r是运算结果。

* 是任意的。它可以是任何字符。前面提到

问题在于它删除了字符串中的每个数字。

如果我用以下输入迭代一次:

    26 + 4 - 2

程序返回这个:

    30 - 

它删除所有三个数字,然后用 30 替换“+”。

我想将其更改为类似于此(通过一次迭代):

    26 + 4 - 2

第一个 RegEx 将删除第一组数字

    + 4 - 2

第二个将删除运算符之后但在下一个运算符之前的数字

    + - 2

下一条语句将用表达式的结果替换运算符

    30 - 2

对于正弦、余弦等其他函数的问题,我也希望如此。

注意:正弦是 'a'

“Sin pi”与“a pi”相同

经过一次迭代后它应该看起来像

    a pi + 2

a + 2

0 + 2

这是代码示例。

这是乘法“案例”

    case '*':
{
int m = n + 1;
while (m < result.length){
if (result[m] != '*' && result[m] != '/' && result[m] != '+' && result[m] != '-'){ //checks the item to see if it is numeric
char ch2 = result[m]; //makes the number a character
number3 += new String(new char[]{ch2}); //combines the character into a string. For example: '2' + '3' = "23".
++m;}
else {
break;
}}
resultNumber = (Double.parseDouble(number2) * Double.parseDouble(number3)); //"number2" holds the value of the numbers before the operator. Example: This number ----> "3" '*' "23"
equation = equation.replaceAll("(\\d+)", ""); // <---- Line I pulled out earlier that I want to change.
equation = equation.replace("*", resultNumber.toString()); // <----- Line I pulled out earlier
result = equation.toCharArray();
number3 = ""; //erases any number held
number2 = ""; //erases any number held
++n;
break;
}

最佳答案

我将首先建议两种替代方法,然后按原样回答您的问题。

也许没有正则表达式会更好

我对你的申请有很多疑问。一个合适的tokenizer (lexer) , 连同一个非常简单的 parser可能会比您的代码做得更好,并提供更清晰的错误消息。

匹配所有操作数

即使您要使用正则表达式,一次匹配两个操作数也可能更有意义。 IE。匹配(\d+)\s*\*\s*(\d+)匹配恰好两个数字的乘法。您可以先搜索匹配项,然后从捕获组中提取操作数,然后计算结果值,最后将包含结果的子字符串粘合在一起:

// Multiplication of unparenthesized integers
Pattern p = Pattern.compile("(\\d+)\\s*\\*\\s*(\\d+)");
Matcher m = p.matcher(s);
while (m.find()) {
int a = Integer.parseInt(m.group(1));
int b = Integer.parseInt(m.group(2));
s = s.substring(0, m.start(1)) + (a*b) + s.substring(m.end(2));
m.reset(s);
}

按照标题中的措辞回答问题

关于您问题的确切表述:

Is there a way to stop a RegEx before a character value and start another one after that character?

如果您希望正则表达式在输入中的给定字符之后不匹配,您可以通过否定后视断言来实现。同样,要仅在给定字符之后匹配,您可以使用正向后视断言。

所以正则表达式开始于 (?<!\*.*)只会匹配第一次出现的 '*' , 而正则表达式开始于 (?<=\*.*)只会在该字符第一次出现后匹配。两者都必须使用 DOTALL 进行编译,或更复杂的形式,如 (?<!\*(?:\n|.*)*) .

但要确保这些匹配与您心中的数学相符可能会非常棘手。

关于java - 有没有办法在字符值之前停止正则表达式并在该字符之后启动另一个正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16178931/

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