十六进制转义

-- Start

八进制转义一节中,我们知道了什么是代码点以及如何在正则表达式中使用八进制代码点。这一节,我们将学习如何在正则表达式中使用十六进制代码点,首先,我们必须知道如何查找一个字符的十六进制代码点。

System.out.println(Integer.toHexString('u'));
从上面的 Java 代码中,我们可以很容易的知道 u 的十六进制代码点是 75,下面我们看看如何在正则表达式中使用该代码点。

#!/usr/bin/perl

my $testText = "I love	regular expressions.";
if($testText =~ m/reg\x75lar/) {
	print "finds the word.";
} else {
	print "cannot find the word.";
}
public static void main(String[] args) {
	String testText = "I love regular expressions.";
	
	String regExp = "reg\\x75lar";
	
	Pattern p = Pattern.compile(regExp);
	Matcher m = p.matcher(testText);
	if (m.find()) {
		System.out.println("finds the word.");
	} else {
		System.out.println("cannot find the word.");
	}
}
遗憾的是,上面这种表示法也是有范围的,支持从 \x0 到 \xFF,为了使十六进制支持的范围更广,就上面这个例子而言,在 Perl 中 我们可以使用如下方式

\x{75}

在 Java 中,我们可以使用如下方式。

\\u0075

--更多参见:正则表达式精萃
-- 声 明:转载请注明出处
-- Last Updated on 2012-05-07
-- Written by ShangBo on 2012-05-07
-- End


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值