Example:

#;38> (define str (string-append "abc" (string #\u3bb) "def"))
#;39> str
"abcλdef"
#;40> (string-split-fields (regexp "." #f #f #t) str)
("a" "b" "c" "λ" "d" "e" "f")
#;41> (string-split-fields (regexp "." #f #f #f) str)
("a" "b" "c" "\316" "\273" "d" "e" "f")

On Dec 13, 2007 8:32 AM, Tobia Conforto <[EMAIL PROTECTED]> wrote:
> Can you (or anybody else) give an example of different behaviour with
> the option turned on and off?  I did a couple of tests and can't see any
> difference, but I admit I have yet to look at the source code.
_______________________________________________
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to