[Zope] ZCatalog searching again!

Dieter Maurer dieter@handshake.de
Wed, 12 Sep 2001 00:26:52 +0200 (CEST)


paul dunbar writes:
 > ....
You have a string, say "s", and want it enclosed into quotes, right?

You can do:

    <dtml-let quoted_s="'\042' + s + '\042'">
       ....
    </dtml-let>

"\042" is the octal escape sequence for '"'.


Dieter