|
|
Case sensitive string comparison
Added on 5/27/2000
|
Director handles string comparison different if the strings are embedded in a simple linear list
-- Nifty little case-sensitive string comparison
--
-- Director handles string comparison different
-- if the strings are embedded in a simple
-- linear list :)
--
-- by Dirk Eismann, d.eismann@medienkonzepte.de
--
-- usage:
-- put compareStrings("it is not the same","it is NOT the same")
-- 0
on compareStrings string1, string2
return [string1] = [string2]
end
|
|