我想从一行 CREATE
中删除所有单引号字符e.g。变化
CREATE TABLE 'Item_Value' ( 'itemID' Integer not NULL, 'value' Integer, 'currencyType' TEXT, PRIMARY KEY(itemID) );
INSERT INTO Item_Value (itemID,value,currencyType) VALUES (2,55,'CREDITS'),
(20,60,'CREDITS'),
(22,310,'CREDITS'),
(23,310,'CREDITS'),
(24,75,'CREDITS'),
到
CREATE TABLE Item_Value ( itemID Integer not NULL, value Integer, currencyType TEXT, PRIMARY KEY(itemID) );
INSERT INTO Item_Value (itemID,value,currencyType) VALUES (2,55,'CREDITS'),
(20,60,'CREDITS'),
(22,310,'CREDITS'),
(23,310,'CREDITS'),
(24,75,'CREDITS'),
我尝试过(使用记事本++)
查找:^(创建。*)\'
替换\ 1
但我甚至无法找到第一个,更不用说全部替换它们了
我还注意到数据加载行上有些字符串包含''I'' key
和End of the sentence. ')
答案 0 :(得分:3)
答案 1 :(得分:0)