[Zope] Whats the difference ( Newbie question )
Tino Wildenhain
tino@wildenhain.de
Tue, 24 Apr 2001 18:44:48 +0200
Hi Fredrik,
try the python-interpreter interactively to get an imagination
of python (simply start the binary)
if "startdatum" is really a string, part of the string
is startdatum[:4] (chars 0..3)
startdatum[5:2] however will give you nothing.
startdatum[5:-2] will give you between the 5th and -2 from the end...
HTH
Tino
--On Dienstag, 24. April 2001 15:48 +0200 Rubinstein Fredrik
<fredrik.rubinstein@ivf.se> wrote:
>
> Hi there
> <dtml-var "_.str(startdatum[0:4])"> will give me an answer
> <dtml-var "_.str(startdatum[5:2])"> will give me nothing
>
> What function do i use to extract a part of a string.
> Been looking around a python.org finding everything except the
> function I want.
>
> Cheers
>
> Fred
>
>
>
> _______________________________________________
> Zope maillist - Zope@zope.org
> http://lists.zope.org/mailman/listinfo/zope
> ** No cross posts or HTML encoding! **
> (Related lists -
> http://lists.zope.org/mailman/listinfo/zope-announce
> http://lists.zope.org/mailman/listinfo/zope-dev )