On Wed, 4 Aug 2004 pd-list-request@iem.at wrote:
Send PD-list mailing list submissions to pd-list@iem.at
To subscribe or unsubscribe via the World Wide Web, visit http://iem.at/cgi-bin/mailman/listinfo/pd-list or, via email, send a message with subject or body 'help' to pd-list-request@iem.at
You can reach the person managing the list at pd-list-admin@iem.at
When replying, please edit your Subject line so it is more specific than "Re: Contents of PD-list digest..."
Today's Topics:
- how can i cut a word in separate letters? (erstens@gmx.ch)
- Re: how can i cut a word in separate letters? (IOhannes m zmoelnig)
- Re: how can i cut a word in separate letters? (stotz)
- Gem 3D text and video? (shree)
- newbie ? - quantize controller data (Mark Casey)
- Re: newbie ? - quantize controller data (IOhannes m zmoelnig)
- Re: newbie ? - quantize controller data (matthew jones)
- Re: prob bug, was:Re: Opening patch takes 100% CPU for several minutes (Hans-Christoph Steiner)
- pd 0.37 devel audio in (Matthew Nish-Lapidus)
--__--__--
Message: 1 Date: Tue, 3 Aug 2004 11:32:48 +0200 (MEST) From: erstens@gmx.ch To: pd-list@iem.at Subject: [PD] how can i cut a word in separate letters?
hi list my question: i want cut a word in separate letters, for exemple: "hello" in a symbol-box will give five separate symbol-boxes:"h" "e" "l" "l" "o"....... i dont have found a solution..... thanks for any helps...
Another solution to the two mentioned, is to use k_guile. Where the scheme script looks something like this:
(pd-outlets 50)
(pd-inlet 0 'any (lambda (a) (let ((n 0)) (for-each (lambda (c) (pd-outlet n (symbol c)) (set! n (1+ n))) (string->list (symbol->string a))))))
Just promoting my stuff. :) You can probably make a shorter solution with the pyext external.