Re: tr/// and use encoding

2002-10-03 Thread Jarkko Hietaniemi
your source code is other text encodings than UTF-8. But tr/// does not embrace this magic. Clarification: tr/A-E/P-T/ (the ranges) does not embrace that magic. tr/ABCDE/PQRST/ does work with the encoding pragma since that employs string literals. -- Jarkko Hietaniemi [EMAIL PROTECTED]

tr/// and use encoding

2002-10-03 Thread Dan Kogai
On Thursday, Oct 3, 2002, at 11:29 Asia/Tokyo, Jarkko Hietaniemi wrote: On Wed, Oct 02, 2002 at 10:44:06PM +0900, Dan Kogai wrote: On Wednesday, Oct 2, 2002, at 22:34 Asia/Tokyo, Jarkko Hietaniemi wrote: Both. I think the operation needed is straight-forward. When you get tr[LHS][RHS],