Hello everyone,
I have the following output string with "\r\n" and I need to be able to compare this to have a True or False, if I have it has output.
How are you comparing these situations?
Thank you
Thank you for your reply, I don't have any characters there.
I was able to compare that with this:
Hi @maltiser ,
Do you want to check if string contains other characters? For example, "XXX\r\n" returns true?
Two ways for your reference.
1/Use equals condition to compare "XXX\r\n" and "\r\n".
2/Compare length of "XXX\r\n" and length of "\r\n".
Best regards,
Rimmon