Help for this page

Select Code to Download


  1. or download this
        my $l_count = $testString =~ tr/(//;
        my $r_count = $testString =~ tr/)//;
    
  2. or download this
        my $l_count = ($testString =~ tr/(/(/);
        my $r_count = ($testString =~ tr/)/)/);