- or download this
my $text = "my dog is green";
my $count =()= $text =~ /(g)(.)/g;
print $count;
- or download this
my $text = "my dog is green";
my $count;
$count++ while $text =~ /(g)(.)/g;
print $count;
- or download this
my $text = "my dog is green";
my $count = $text =~ s/(g)(.)/$1$2/g;
print $count;