We are about to switch to a new forum software. Until then we have removed the registration on this forum.
`println(inString);
if (inString == "BVST") {`
the println function tells me that inString equals BVST, however it will not trigger the if conditional, it doesn't return an error, but it won't trigger the if() statement either.
Does anyone know why?
Answers
https://Processing.org/reference/String_equals_.html
In Java Strings could not be evaluated with ==
Use equals()
thank you!