all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jean Louis <bugs@gnu.support>
To: help-gnu-emacs@gnu.org
Subject: Re: Is there any difference between `equal' and `string=' for strings?
Date: Sat, 21 Aug 2021 12:04:08 +0300	[thread overview]
Message-ID: <YSDBiBp24aeO4HJu@protected.localdomain> (raw)
In-Reply-To: <87tujkd46u.fsf@zoho.eu>

* Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org> [2021-08-20 09:25]:
> Jean Louis wrote:
> 
> > How I understand it, it is good also for comparison of
> > symbols as strings.
> >
> > (setq s1 "Jane") -> "Jane"
> > (setq s2 "Jane") -> "Jane"
> > (setq s3 "Doe") -> "Doe"
> >
> > Then this is how I understand the intended purpose:
> >
> > (string= s1 s2) -> t
> > (string= s1 s3) -> nil
> 
> Uhm, but in that case, s1, s2, and s3 are evaluated to their
> string values, so at the time of `string=', that's
> 
>   (string= "Jane" "Jane") ; t
>   (string= "Jane" "Doe" ) ; nil

Yes, that is what I meant. It is good to compare symbols which are
possibly strings if they are equal to each other.

(setq s1 1) ⇒ 1
(setq s2 "1") ⇒ "1"

Which is also good to show the error if one of symbols is not string:

(string= s1 s2) eval: Wrong type argument: stringp, 1

> > And of course you are free to compare empty symbols:
> >
> > (string= 'hi 'hi) -> t
> 
> With symbols their "print names" are used, you can get that
> with
> 
>   (symbol-name 'hi) ; "hi"
> 
> So that's virtually (string= "hi" "hi") only here it is done
> _by_ and not before string= (as 'hi does not evaluate to the
> string "hi", for example).

That I don't understand, what I know is that `string=' will evaluate
symbols as strings and compare them, interesting is it will accept
`nil' as value:

(setq s1 "1") ⇒ "1"
(setq s2 "1") ⇒ "1"

(string= s1 s2) ⇒ t

(setq s1 "1") ⇒ "1"
(setq s2 nil) ⇒ nil

(string= s1 s2) ⇒ nil


-- 
Jean

Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns

In support of Richard M. Stallman
https://stallmansupport.org/



  parent reply	other threads:[~2021-08-21  9:04 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-19  4:56 Is there any difference between `equal' and `string=' for strings? Marcin Borkowski
2021-08-19  6:21 ` Jean Louis
2021-08-19 23:14   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-20  5:35     ` Jean Louis
2021-08-20  6:32       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  9:05         ` Jean Louis
2021-08-21 19:14           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-19 15:35 ` [External] : " Drew Adams
2021-08-21  3:43   ` this is United States calling (was: Re: [External] : Is there any difference between `equal' and `string=' for strings?) Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  3:49     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  4:20       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  5:39     ` FW: " Drew Adams
2021-08-21 19:41       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  6:50     ` tomas
2021-08-21 19:41       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-19 23:02 ` Is there any difference between `equal' and `string=' for strings? Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-20  5:25   ` Jean Louis
2021-08-20  6:24     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-20  6:41       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-20 23:12         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-20 23:42           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  0:08             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  0:30               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  9:08         ` Jean Louis
2021-08-21 19:17           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-21  9:04       ` Jean Louis [this message]
2021-08-21 19:09         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-24 14:55     ` Marcin Borkowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YSDBiBp24aeO4HJu@protected.localdomain \
    --to=bugs@gnu.support \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.