Describe the solution you'd like
Similar to splitByChar and splitByString but with regular expression as a separator.
Use case
There is a string column containing a list of data items in unusual format. I want to parse it inside ClickHouse.
Alternatives
extractAll(s, '(.+?)separator') will do something similar but splitByRegexp can be more convenient.
Describe the solution you'd like
Similar to
splitByCharandsplitByStringbut with regular expression as a separator.Use case
There is a string column containing a list of data items in unusual format. I want to parse it inside ClickHouse.
Alternatives
extractAll(s, '(.+?)separator')will do something similar butsplitByRegexpcan be more convenient.