repo.or.cz
/
perlbook.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git]
/
l44.pl
blob
ec0a286db7969f761516deecbe8eb5c8b2438fd2
1
#!/usr/bin/perl -w
2
use
strict
;
3
use
warnings
;
4
my
$text
=
'a aaaaa aaaaaaaaaaaaaa'
;
5
6
print
"
$1
\n
"
while
(
$text
=~
/(a*)/g
);