CREATE TABLE "USER "."ACT" ( "ACTNO" SMALLINT NOT NULL, "ACTKWD" CHAR(6 OCTETS) NOT NULL, "ACTDESC" VARCHAR(20 OCTETS) NOT NULL) IN "USERSPACE1" ORGANIZE BY ROW;
I need to replace or trim spaces between the double quotes "user ", how do I do it in python.
The expected output for the given input string is
CREATE TABLE "USER"."ACT" ( "ACTNO" SMALLINT NOT NULL, "ACTKWD" CHAR(6 OCTETS) NOT NULL, "ACTDESC" VARCHAR(20 OCTETS) NOT NULL) IN "USERSPACE1" ORGANIZE BY ROW;
If you see in the output after the string "user" space was removed.