From 847f7acb0d7045cd06fbae69968440aac525d0fd Mon Sep 17 00:00:00 2001 From: Jason315 Date: Thu, 27 Jun 2019 17:14:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=A1=A8=E6=A0=BC=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/book/18-Strings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/book/18-Strings.md b/docs/book/18-Strings.md index 614b65b..72d140f 100644 --- a/docs/book/18-Strings.md +++ b/docs/book/18-Strings.md @@ -758,8 +758,8 @@ the mightiest banana in the forest...with... a banana! 稍后你会看到,`String`之外的正则表达式还有更强大的替换工具,例如,可以通过方法调用执行替换。而且,如果正则表达式不是只使用一次的话,非`String`对象的正则表达式明显具备更佳的性能。 ### 创建正则表达式 我们首先从正则表达式可能存在的构造集中选取一个很有用的子集,以此开始学习正则表达式。正则表达式的完整构造子列表,请参考JDK文档`java.util.regex`包中的`Pattern`类。 -||| -|----|----| +| | | +| :----: | :----: | |**`B`**|**指定字符`B`**| |**`\xhh`**|**十六进制值为`0xhh`的字符**| |**`\uhhhh`**|**十六进制表现为`0xhhhh`的Unicode字符**|