chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] Re: UTF-8 support


From: Zbigniew
Subject: Re: [Chicken-users] Re: UTF-8 support
Date: Thu, 13 Dec 2007 11:37:28 -0600

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 <address@hidden> 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.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]