删除绘画逻辑并仅保留列名的正则表达式

Regex that remove painting logic and just keep the column name

我有以下字符串,我想删除格式并只保留列名。有人可以为此建议正则表达式吗?

"XYZ_Col,to_timestamp(CREATE_DT,'yyyyMMdd HHmmss')CREATE_DT,ABC_Col,DEF_Col"

"XYZ_Col,CREATE_DT,ABC_Col,DEF_Col"

提前致谢

我得到了解决方案。

regexp_extract(regexp_replace(column_name, \"\'\", \"\\''\") , '[^)]*$',0)