Page 1 of 1

deleted by uploader

Posted: Sat Feb 28, 2015 10:34 am
by tiffy
deleted

Re: WHAT AM I DOING WRONG HERE ?

Posted: Sat Feb 28, 2015 12:26 pm
by KG_is_back
Just as I suspected... source contains additional "newline" character at the end ( newline character is made of two "\r\n") which is not visible. That means the first source is also two chars longer (74). string prim unlike text prim doesn't display newlines, therefore they are not even copied from it = copy of source 1 is equal to source 2

The best solution to this would be to track where the newline is added and prevent that from happening. Alternatively you may use "string section" prim to force source1 be the same length as source 2 (effectively removing the "\r\n")

deleted by uploader

Posted: Sat Feb 28, 2015 2:08 pm
by tiffy
deleted