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

Re: a particular string



>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