Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
707 views
in Technique[技术] by (71.8m points)

conditional statements - Take NOT of Condition in Java String


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you have many expressions or long expressions, you could parse them as text by putting them in a text file, then scanning through it using Scanner. By the way, this is a fascinating question, glad you asked!

File expressions = new File(/*pathname*/);
File inverse = new File(/*pathname*/);
FileWriter fileWriter = new fileWriter(inverse);
Scanner scanner = new Scanner(expressions);

while(scanner.hasNext()){
    String str = "";
    String next = scanner.next();
    if (next.equals("=="){
        str = "!=";
    }
    else if (next.equals("!="){
        str = "==";
    }
    else if (next.equals("||"){
        str = "&&";
    }
    else if (next.equals("&&"){
        str = "||";
    }
fileWriter.write(str)
}

This almost surely works, maybe the suggestion Tim made is better. Like Tim said, your goal will likely be accomplished through some sort of parsing.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...