space character not generated properly in MT4 v610

 

In this original mq4 line of code (before v600)

StringConcatenate(strYear, ".", strMonth, ".", strDay, " ", strHourPad, nHour24, ":", strMinute); 

when ran in v600 and up, the single space " " character is not generated like in original mq4. It becomes a NULL character. Only by putting it as 2 spaces instead of one will it make it generate one space such as:

StringConcatenate(strYear, ".", strMonth, ".", strDay, "  ", strHourPad, nHour24, ":", strMinute); 

Does anyone know why this is? Is this a bug in v600+? Or is there a Unicode space character that needs to be specified? If so, could you provide an example? Thanks

 
bennyHanna: Is this a bug in v600+?
Obviously. Report it via service desk.
 
bennyHanna:

In this original mq4 line of code (before v600)

when ran in v600 and up, the single space " " character is not generated like in original mq4. It becomes a NULL character. Only by putting it as 2 spaces instead of one will it make it generate one space such as:

Does anyone know why this is? Is this a bug in v600+? Or is there a Unicode space character that needs to be specified? If so, could you provide an example? Thanks

You might want to try the current build first . . build 610, before contacting the Service Desk
 
RaptorUK: You might want to try the current build first . . build 610, before contacting the Service Desk
Thread title: "space character not generated properly in MT4 v610"
 
WHRoeder:
Thread title: "space character not generated properly in MT4 v610"

Yep, but I saw . . . "when ran in v600 and up" and wondered. It was reported already and supposed to have been fixed . . . I think.

Maybe it was related or maybe not . . . https://www.mql5.com/en/forum/149553
Reason: