how do i escape a semicolon in string example String holdblankvalue=" \;"; i'm using weblogic i get the message invalid escape character or sequence any ideas thanks stephen
If you really like escaping things just for the fun of it you can use String holdblankvalue=" \u003b"; (or "\073") but that is not at all necessary. If you wanted to you could write "String holdblankvalue\u003d\u0022\u003b\u0022\u003B" etc...