Get the sub string : substr « String « Perl






Get the sub string

    

#!C:\Perl\Bin\

$stringa = "Jupiter is a planet";

$substring = substr($stringa, 0, 7);

print "$substring \n\n";

   
    
    
    
  








Related examples in the same category

1.Using substr with offset (-6) and length (-2)
2.Using substr with offset (-6), and length (2)
3.Using substr with the string and the offset (2)
4.Using substr with the string, offset (2) and length (3)
5.substr and index function
6.substring from 10 to 14
7.Locate a substring with space inside
8.Find the substring with '$_ =~ /Aa/'
9.Using substr.
10.If the offset is negative, substr counts from the end of the string