mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
6 lines
308 B
SQL
6 lines
308 B
SQL
select splitByRegexp('\\d+', x) from (select arrayJoin(['a1ba5ba8b', 'a11ba5689ba891011b']) x);
|
|
select splitByRegexp('', 'abcde');
|
|
select splitByRegexp('<[^<>]*>', x) from (select arrayJoin(['<h1>hello<h2>world</h2></h1>', 'gbye<split>bug']) x);
|
|
select splitByRegexp('ab', '');
|
|
select splitByRegexp('', '');
|