[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: a particular string
- To: blanchon@imag.fr (herve Blanchon)
- Subject: Re: a particular string
- From: Steve Strassmann <straz@cambridge.apple.com>
- Date: Wed, 12 Feb 1992 11:42:36 -0500
- Cc: info-mcl
>but I have not been able to produce such a string because of the behaviour
>of MCL with the " caracter;
>
Use backslash to quote funny characters:
? (format t "~a" "put \"il etait une fois\" into card field resultat of card 1")
put "il etait une fois" into card field resultat of card 1
NIL
? (length "Mice have four feet.")
20
? (length "\"Mice\" has four chars.")
22