maybe someone knows the technical answer to the following behaviour:
s = "hello world!"
s == s.upcase
# =>false, because "hello world!" != "HELLO WORLD!"
s == s.upcase!
#=>true, because s is changed before comparison?
Thanks in advance,
Mathias
|
maybe someone knows the technical answer to the following behaviour:
Thanks in advance, Mathias |
|||
|
|
|
This would happen in every language, think of it this way
In both cases, the upcase(!) function has to be called before it can be passed to AreEqual, and in the |
|||||||
|
|
Don't do that.
|
|||
|
|