$var = 'foo'; $str = "abc $var def"; print $str; abc foo def #### $str = "\'abc $var def\'"; print $str; 'abc foo def'