in reply to modify variable on pass by value
there are my two cents#!/usr/local/bin/perl my $string = 'Hello, World ,,, my World 1984'; $string =~ s/\b\w//g; print $string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: modify variable on pass by value
by xjar (Pilgrim) on Sep 11, 2000 at 21:20 UTC | |
by little (Curate) on Sep 11, 2000 at 21:33 UTC |