/ to delimit regular expressions=~ and !~ to denote match and does not match respectivelyExamples:
select city from root.d1.s1 where city =~ /.*/
select city from root.d1.s1 where city !~ /Bei.*/
Pros & cons:
[+] Concise and easy to write.
[-] Introduces mental burden for users to be familiar with the new operators and delimiters; not self-explanatory
MATCHES and NOT MATCHES to denote match and does not match respectively (since LIKE is already taken in IoTDB)