Subject: Re: character codes in regular expressions?
From: murphy <murphy rubychan.de>
Date: Thu, 15 Feb 2007 05:59:21 +0900
References: 10305
In-reply-to: 10305
> How would one write a regular expression for matching any character with
> code 0x80-0xff ?
you can use the default string escape sequences, like /[\x80-\xff]/.
[murphy]