extract one file form .tar.gz without uncompressing .tar.gz file

hi all,

kindly help me how to extract one file form .tar.gz without uncompressing .tar.gz file.

thanks in advance
bali

zcat file.tar.gz | tar xvf - file_to_extract

Jean-Pierre.

does zcat work on .gz files?
if not:

gunzip -c tar.gz | tar xvf -    blah/blah/ile_you_want