2020-03-20 18:20:59 +00:00
|
|
|
|
# 字符串替换函数 {#zi-fu-chuan-ti-huan-han-shu}
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
## replaceOne(haystack, pattern, replacement) {#replaceonehaystack-pattern-replacement}
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
用’replacement’子串替换’haystack’中第一次出现的’pattern’子串(如果存在)。
|
2020-04-30 18:19:18 +00:00
|
|
|
|
’pattern’和’replacement’必须是常量。
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
## replaceAll(haystack, pattern, replacement), replace(haystack, pattern, replacement) {#replaceallhaystack-pattern-replacement-replacehaystack-pattern-replacement}
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
用’replacement’子串替换’haystack’中出现的所有的’pattern’子串。
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
## replaceRegexpOne(haystack, pattern, replacement) {#replaceregexponehaystack-pattern-replacement}
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
使用’pattern’正则表达式的替换。 ‘pattern’可以是任意一个有效的re2正则表达式。
|
|
|
|
|
如果存在与’pattern’正则表达式匹配的匹配项,仅替换第一个匹配项。
|
|
|
|
|
模式pattern可以指定为‘replacement’。此模式可以包含替代`\0-\9`。
|
|
|
|
|
替代`\0`包含了整个正则表达式。替代`\1-\9`对应于子模式编号。要在模板中使用反斜杠`\`,请使用`\`将其转义。
|
|
|
|
|
另外还请记住,字符串字面值(literal)需要额外的转义。
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
|
|
|
|
示例1.将日期转换为美国格式:
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT DISTINCT
|
|
|
|
|
EventDate,
|
|
|
|
|
replaceRegexpOne(toString(EventDate), '(\\d{4})-(\\d{2})-(\\d{2})', '\\2/\\3/\\1') AS res
|
|
|
|
|
FROM test.hits
|
|
|
|
|
LIMIT 7
|
|
|
|
|
FORMAT TabSeparated
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
|
2014-03-17 03/17/2014
|
|
|
|
|
2014-03-18 03/18/2014
|
|
|
|
|
2014-03-19 03/19/2014
|
|
|
|
|
2014-03-20 03/20/2014
|
|
|
|
|
2014-03-21 03/21/2014
|
|
|
|
|
2014-03-22 03/22/2014
|
|
|
|
|
2014-03-23 03/23/2014
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
|
|
|
|
示例2.复制字符串十次:
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT replaceRegexpOne('Hello, World!', '.*', '\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0') AS res
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
|
┌─res────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
|
|
|
│ Hello, World!Hello, World!Hello, World!Hello, World!Hello, World!Hello, World!Hello, World!Hello, World!Hello, World!Hello, World! │
|
|
|
|
|
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
## replaceRegexpAll(haystack, pattern, replacement) {#replaceregexpallhaystack-pattern-replacement}
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
|
|
|
|
与replaceRegexpOne相同,但会替换所有出现的匹配项。例如:
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT replaceRegexpAll('Hello, World!', '.', '\\0\\0') AS res
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
|
┌─res────────────────────────┐
|
|
|
|
|
│ HHeelllloo,, WWoorrlldd!! │
|
|
|
|
|
└────────────────────────────┘
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-12-11 05:48:32 +00:00
|
|
|
|
作为例外,对于空子字符串,正则表达式只会进行一次替换。
|
2019-05-05 17:38:05 +00:00
|
|
|
|
示例:
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT replaceRegexpAll('Hello, World!', '^', 'here: ') AS res
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
|
┌─res─────────────────┐
|
|
|
|
|
│ here: Hello, World! │
|
|
|
|
|
└─────────────────────┘
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-03-20 18:20:59 +00:00
|
|
|
|
## regexpQuoteMeta(s) {#regexpquotemetas}
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
|
|
|
|
该函数用于在字符串中的某些预定义字符之前添加反斜杠。
|
2020-12-11 05:48:32 +00:00
|
|
|
|
预定义字符:`\0`, `\\`, `|`, `(`, `)`, `^`, `$`, `.`, `[`, `]`, `?`, `*`, `+`, `{`, `:`, `-`。
|
|
|
|
|
这个实现与re2::RE2::QuoteMeta略有不同。它以`\0` 转义零字节,而不是`\x00`,并且只转义必需的字符。
|
|
|
|
|
有关详细信息,请参阅链接:[RE2](https://github.com/google/re2/blob/master/re2/re2.cc#L473)
|
2019-05-05 17:38:05 +00:00
|
|
|
|
|
2020-01-30 10:34:55 +00:00
|
|
|
|
[来源文章](https://clickhouse.tech/docs/en/query_language/functions/string_replace_functions/) <!--hide-->
|
2020-12-11 05:48:32 +00:00
|
|
|
|
|