variable passing to sed

I m trying to pass variable to sed.
export var=140920060731
sed -e '/$var/d' file
but no luch so far..? any body has any idea abt it

Is there any way to pass variable to SED?

Thanks ,
Manish

use double-quotes.
and why exact do you need to 'export'?

Guys I got it , it is sorry with ""
sed -e "/$var/d"

thanks a lot