I have a string:
java.lang.IllegalArgumentException: local part cannot be "null" when creating a Qname
which I'm pulling from a log file on a unix server.
and I have this same exact string which I'm pulling from a windows .txt file to compare against the string from the unix server:
java.lang.IllegalArgumentException: local part cannot be "null" when creating a Qname
I'm trying to determine if they are equal, but the .equals() method in java is letting me know that they are not equal.
How can I go about determining that they are indeed equal?