help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Getting substring


From: Heime
Subject: Re: Getting substring
Date: Thu, 17 Aug 2023 03:01:28 +0000





Sent with Proton Mail secure email.

------- Original Message -------
On Thursday, August 17th, 2023 at 2:52 PM, Heime <heimeborgia@protonmail.com> 
wrote:


> 
> 
> 
> 
> 
> Sent with Proton Mail secure email.
> 
> 
> ------- Original Message -------
> On Thursday, August 17th, 2023 at 2:33 PM, Pierre Rouleau 
> prouleau001@gmail.com wrote:
> 
> 
> 
> > I mean,
> > Executing :
> > 
> > > (setq str "bigoplus ⨁︁")
> > > (message "%s TEST: " (car (split-string str)))
> > 
> > prints bigoplus.
> > 
> > but
> > 
> > (message "%s TEST: " (car (split-string grafm)))
> > 
> > will depend of what grafm holds.
> > 
> > On Wed, Aug 16, 2023 at 10:30 PM Pierre Rouleau prouleau001@gmail.com
> > 
> > wrote:
> > 
> > > Why does the following not print the first word?
> > > 
> > > > (message "%s TEST: " (car (split-string grafm)))
> > > 
> > > Are you sure it does not print it? It prints bigoplus for me.
> > > You can also look into the 'Message' buffer to see what was printed by
> > > the message function. - Pierre
> 
> 
> I now realise my mistake of putting "%s" before "TEST". I was thus doing 
> things
> correctly after all.
> 
> The command (car (split-string grafm)) also works if there are no spaces in
> 'grafm', it still returns the string as a first element in the list result.

Have started to wonder whether the following is wrong to do

(setq grafm "bigoplus ⨁︁")
(pcase (car (split-string grafm))
  "bigoplus" ("Detected bigoplus")) 

It is not a string.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]