echo "Cfoo'barxml" | sed "s/'/::/g" | sed 's/::/\\:/g' | sed "s/:/'/g" 替换单引号为 \' ------------------------ sed 替换单引号' echo "mmm'sss" > testcat test 把test内容中单引号替换成双引号sed 's/'"'"/'"''/g' test ==…
平时update的时候直接更改字段内的值,例如: update table_temp set name = 'Hider' where id = 100; 但更新后的值中包括单引号,则不能按以上方式进行更新,会报错. 遂测试之. -- 建立测试表 create table temp_cwh_test_1219 ( id varchar2(10), name varchar2(20) ); -- 插入数据 insert into temp_cwh_test_1219 values (1,'Nick…