Help for this page

Select Code to Download


  1. or download this
    my $string = "Hello World";  
    if ($string =~ /Hello/) { 
        print "Basic String contains: Hello\n"; 
    }
    
  2. or download this
    my $string = "\"Hello\" World";
    
    ...
    my $string = q{"Hello" World};
    
    my $string = qq{"Hello" World};
    
  3. or download this
    if ($string =~ /"Hello"/) { 
        print "Basic String contains: Hello\n"; 
    }