[Solved] How to check if a string equals to “}”


Just do str_.equals("{");
or str_.equals("}");

We are still not sure which brace

EDIT: Ah now we have clarity.

Use str_.equals("}");

3

solved How to check if a string equals to “}”