Emps-World Forum

Emps-World => Bug Reports => Resolved Bug Reports => Topic started by: Jp on August 11, 2016, 07:33:52 pm

Title: '/' in clan chats
Post by: Jp on August 11, 2016, 07:33:52 pm
Can't type / in clan chats.
I.e typing 1/100 comes up as 1100.
Title: Re: '/' in clan chats
Post by: Mary on August 11, 2016, 08:47:27 pm
obviously, since / counts as the start of a line in clan chat all / get negated

idk if theres a way around but ill leave your report here in case there is.
Title: Re: '/' in clan chats
Post by: Jonneh on August 11, 2016, 10:39:42 pm
obviously, since / counts as the start of a line in clan chat all / get negated

idk if theres a way around but ill leave your report here in case there is.

message.replaceFirst("^/", ""); instead of message.replace("/", "");
Title: Re: '/' in clan chats
Post by: Mary on August 12, 2016, 12:47:19 am
obviously, since / counts as the start of a line in clan chat all / get negated

idk if theres a way around but ill leave your report here in case there is.

message.replaceFirst("^/", ""); instead of message.replace("/", "");
errors (illegal/unsupported escape sequence/@not null string regex)

   public String serialize() {
      return "{\"clan\":\"" + clan + "\",\"from\":\"" + from + "\",\"message\":\"" + message.replace("\\", "/").replace("\"", "\\\"") + "\"}";
   }

this' used for clanchat ._.
Title: Re: '/' in clan chats
Post by: Thomy on August 12, 2016, 02:30:18 pm
The way java handles regexes is a bit exotic. I can just use replaceFirst with a simple string though. Thanks jonneh. :)