Re: Convert on uppercase unaccentent unicode character

2007-10-05 Thread Ricardo Aráoz
Wildemar Wildenburger wrote: > Steve Holden wrote: >> Malheureusement, I see that absence of accented capitals is a modern >> phenomenon that is regarded as an impediment to the language mostly >> stemming from laziness of individual authors and inadequacy of low-end >> typesetting software. I h

Re: Convert on uppercase unaccentent unicode character

2007-10-04 Thread Wildemar Wildenburger
Steve Holden wrote: > Malheureusement, I see that absence of accented capitals is a modern > phenomenon that is regarded as an impediment to the language mostly > stemming from laziness of individual authors and inadequacy of low-end > typesetting software. I hadn't realised I was so up-to-date

Re: Convert on uppercase unaccentent unicode character

2007-10-04 Thread Steve Holden
JBJ wrote: > Steve Holden wrote: > >> Duncan Booth wrote: >>> [EMAIL PROTECTED] wrote: >>> On Oct 4, 7:35 am, JBJ >>> [EMAIL PROTECTED]> wrote: > Hi, > I'am very newbie in Python. > For the moment I'am trying to convert an unicode character to his > uppercase unaccented charac

Re: Convert on uppercase unaccentent unicode character

2007-10-04 Thread JBJ
John Machin wrote: > On Oct 4, 4:35 am, JBJ [EMAIL PROTECTED]> wrote: >> Hi, >> I'am very newbie in Python. >> For the moment I'am trying to convert an unicode character to his >> uppercase unaccented character. >> By example with locale fr_FR: >> a,A,à,À should return A >> o,O,ô,Ô should return

Re: Convert on uppercase unaccentent unicode character

2007-10-04 Thread JBJ
Steve Holden wrote: > Duncan Booth wrote: >> [EMAIL PROTECTED] wrote: >> >>> On Oct 4, 7:35 am, JBJ >> [EMAIL PROTECTED]> wrote: Hi, I'am very newbie in Python. For the moment I'am trying to convert an unicode character to his uppercase unaccented character. By example wi

Re: Convert on uppercase unaccentent unicode character

2007-10-04 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, Duncan Booth wrote: > Steve Holden <[EMAIL PROTECTED]> wrote: > >>> No, that will uppercase the string, but it doesn't (and shouldn't) >>> strip the accents: >>> >> I can agree that is doesn't (though I am taking your word for it), but >> a French person will defi

Re: Convert on uppercase unaccentent unicode character

2007-10-03 Thread John Machin
On Oct 4, 7:06 am, Duncan Booth <[EMAIL PROTECTED]> wrote: > Steve Holden <[EMAIL PROTECTED]> wrote: > >> No, that will uppercase the string, but it doesn't (and shouldn't) > >> strip the accents: > > > I can agree that is doesn't (though I am taking your word for it), but > > a French person will

Re: Convert on uppercase unaccentent unicode character

2007-10-03 Thread Duncan Booth
Steve Holden <[EMAIL PROTECTED]> wrote: >> No, that will uppercase the string, but it doesn't (and shouldn't) >> strip the accents: >> > I can agree that is doesn't (though I am taking your word for it), but > a French person will definitely feel it's doing the wrong thing. Upper > case letters a

Re: Convert on uppercase unaccentent unicode character

2007-10-03 Thread Steve Holden
Duncan Booth wrote: > [EMAIL PROTECTED] wrote: > >> On Oct 4, 7:35 am, JBJ > [EMAIL PROTECTED]> wrote: >>> Hi, >>> I'am very newbie in Python. >>> For the moment I'am trying to convert an unicode character to his >>> uppercase unaccented character. >>> By example with locale fr_FR: >>> a,A,à,À sho

Re: Convert on uppercase unaccentent unicode character

2007-10-03 Thread John Machin
On Oct 4, 4:35 am, JBJ wrote: > Hi, > I'am very newbie in Python. > For the moment I'am trying to convert an unicode character to his uppercase > unaccented character. > By example with locale fr_FR: > a,A,à,À should return A > o,O,ô,Ô should return O > ½,¼ should return ¼ > i,I,î,Î should return

Re: Convert on uppercase unaccentent unicode character

2007-10-03 Thread Duncan Booth
[EMAIL PROTECTED] wrote: > On Oct 4, 7:35 am, JBJ [EMAIL PROTECTED]> wrote: >> Hi, >> I'am very newbie in Python. >> For the moment I'am trying to convert an unicode character to his >> uppercase unaccented character. >> By example with locale fr_FR: >> a,A,à,À should return A >> o,O,ô,Ô should r

Re: Convert on uppercase unaccentent unicode character

2007-10-03 Thread timaranz
On Oct 4, 7:35 am, JBJ wrote: > Hi, > I'am very newbie in Python. > For the moment I'am trying to convert an unicode character to his uppercase > unaccented character. > By example with locale fr_FR: > a,A,à,À should return A > o,O,ô,Ô should return O > ½,¼ should return ¼ > i,I,î,Î should return

Convert on uppercase unaccentent unicode character

2007-10-03 Thread JBJ
Hi, I'am very newbie in Python. For the moment I'am trying to convert an unicode character to his uppercase unaccented character. By example with locale fr_FR: a,A,à,À should return A o,O,ô,Ô should return O œ,Œ should return Œ i,I,î,Î should return I Have you some suggestions ? Thank. -- http: