On Wed, Nov 28, 2012 at 10:46 AM, Israel <israel.schulman@gmail.com> wrote:
If you're trying to compare two strings exactly, why not use (a == b) ??
Or, get even more strict with it by using (a === b). That will then give you true only when it is an absolute true 'match'.
--