0
可能重複:
regexp_replace Unicode in PostgreSQL的Unicode REGEXP_REPLACE PostgreSQL中
如何在PostgreSQL的REGEXP_REPLACE對Unicode
我讀這http://www.regular-expressions.info/unicode.html
select regexp_replace('s4y8sds', '\\p{Number}', '')
或
select regexp_replace('s4y8sds', '\\p{N}', '')
但不起作用
感謝
我使用Unicode工作。所以如果我有其他格式的數字,如羅馬(ⅡⅢⅣ),阿拉伯文(1 2 3 4)和其他(¼½¾)。 regexp_replace('s4y8sds',E'\\ d +','','g')無法工作 – Thessa
@Thessa,感謝您澄清您的問題。我會在一分鐘內更新答案。 – bpgergo