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]
/
l43.pl
blob
09487d91c565b19731670d54285fe6299daa8ecb
1
#!/usr/bin/perl -w
2
use
strict
;
3
use
warnings
;
4
my
$text
=
’Variable names
in
Perl can have several formats
...
’
;
5
6
$text
=~
/(.*\b)/g
;
7
8
print
"
$1
\n
"
;