Use raw strings in ClickHouse

623 Views Asked by At

I'm using regex to make some searches on strings with ClickHouse and as the docs say here

Note that the backslash symbol () is used for escaping in the regular expression. The same symbol is used for escaping in string literals. So in order to escape the symbol in a regular expression, you must write two backslashes () in a string literal.

Is it a way to tell ClickHouse to parse a string like a raw string, so that I don't have to use double backslashes in all patterns? Something like doing r'...' in Python?

1

There are 1 best solutions below

0
On

No way.

Something like doing r'...' in Python

Then how you encode this 'xxx'yyy' ?

You can encode strings

https://clickhouse.tech/docs/en/sql-reference/functions/encoding-functions/#unhexstr

https://clickhouse.tech/docs/en/sql-reference/functions/string-functions/#base64decode

Or you can use RowBinary format.