java string methods in if statements code example
Example: how to use string variables with an if statement in java
String a = "Hello"
if (a.equals("Hello") {
System.out.println("Variable A is Hello");
} else {
System.out.println("Variable A is not hello :(");
}