Need command to replace empty using sed/awk

Hi,

In a file we have the following data like as below

  abcdef="cfg-1-15"
  bmmdda-g-45-2
  yhdiao"rtg-1-df-34"

I need a sed/awk command to replace the above string with empty.

Thx,

provide the expected output from the given input
also, in sed, you can replace sat 'abc' with empty,

sed 's/abc//g' file

---------- Post updated at 06:07 AM ---------- Previous update was at 06:06 AM ----------

awk '{gsub("abc", X)}1' file