#!/usr/bin/perluse warnings;use strict;my $text = "this is a test";while ($text =~ /(?=(.))/g) { print "[$1]";}