Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
REGEX_REPLACEOracle 10g でメソッドを使用していますが、文字列を置き換えていません。
REGEX_REPLACE
これが私が(失敗して)試していることです:
Select REGEX_REPLACE('Mathew, Sajan K ext (E IT S US 1)','\\([^\\)]+\\)','') "REGEXP_REPLACE"
これを試して:
Select REGEX_REPLACE('Mathew, Sajan K ext (E IT S US 1)','\([^\)]+\)','') "REGEXP_REPLACE"
余分なエスケープ文字を削除したことに注意してください\。一部の言語では二重エスケープが必要なようですが、そうでない言語もあります。
\
参照: Oracle SQL データベース リファレンス REGEX_REPLACE