mysql regexp 中文匹配问题???

2019-03-27 11:03:35 +08:00
 c4f36e5766583218
SELECT
	'测试好友' REGEXP '[123456789 一二三]',
	'测试好友' REGEXP '[123456789 一二三四]',
	'测试好友' REGEXP '[123456789 一二三五]' 
FROM
	DUAL;

输出为 0, 1, 0,这是为何?中文是按照拼音首字母判断的吗?

上面 REGEXP 里没有空格,保存的时候自动添加的,有没有结果都一样

3357 次点击
所在节点    MySQL
3 条回复
c4f36e5766583218
2019-03-27 17:14:41 +08:00
https://mariadb.com/kb/en/library/pcre/
```text
Also, REGEXP/RLIKE, and the new functions, now work correctly with all multi-byte character sets supported by MariaDB, including East-Asian character sets (big5, gb2313, gbk, eucjp, eucjpms, cp932, ujis, euckr), and Unicode character sets (utf8, utf8mb4, ucs2, utf16, utf16le, utf32). In earlier versions of MariaDB (and all MySQL versions) REGEXP/RLIKE works correctly only with 8-bit character sets.
```
c4f36e5766583218
2019-03-27 17:17:13 +08:00
https://dev.mysql.com/doc/refman/8.0/en/regexp.html
```text
MySQL implements regular expression support using International Components for Unicode (ICU), which provides full Unicode support and is multibyte safe. (Prior to MySQL 8.0.4, MySQL used Henry Spencer's implementation of regular expressions, which operates in byte-wise fashion and is not multibyte safe. For information about ways in which applications that use regular expressions may be affected by the implementation change, see Regular Expression Compatibility Considerations.)
```
c4f36e5766583218
2019-03-27 17:31:22 +08:00
Starting with MariaDB 10.0.5, MariaDB switched to the PCRE regular expression library for enhanced regular expressions.

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/549020

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX