From: Christian Kaiser Date: 2004-10-15T16:04:29+09:00 Subject: Re: Oniguruma Part 2 > IIRC, \010 if backspace, not bell. That would make 'a' (attention?) the > bell. Nope. \x010 is octal, so it's \x08 whis is bell. Fortunately it is not in RegEx. Whatever that code is for, it's not used for the escapes. I had a problem with '\w' only catching codes < 128 (simple 7 bit ASCII), but now I convert scripts and input data to UTF-8 (and select UTF-8 by ruby's command line), and this works perfectly. If only this would be readable. I'd rather have UTF-16 for everything (script and data), but well... Christian