Skip to content

Instantly share code, notes, and snippets.

@jhannah
Created February 25, 2010 18:22
Show Gist options
  • Select an option

  • Save jhannah/314855 to your computer and use it in GitHub Desktop.

Select an option

Save jhannah/314855 to your computer and use it in GitHub Desktop.
my $string = "abcdef";
my $newstring;
foreach my $letter (split //, $string) {
$newstring .= "[$letter]";
}
print "$newstring\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment