Help for this page

Select Code to Download


  1. or download this
    "${foo}"
    
  2. or download this
    "$foo"
    
  3. or download this
    print qq|...contatc=|. uri_escape( $address ) .qq|...|;
    
  4. or download this
    printf qq|...contatc=%s...|, uri_escape( $address );
    
  5. or download this
    my $address_uri = uri_escape( $address );
    print qq|...contatc=$address_uri...|;
    
  6. or download this
    print qq|...contatc=${\( uri_escape( $address ) )}...|;