- or download this
@array = qw(one two three);
$p_str=join ",",@array;
- or download this
@array = qw(one two three);
$p_str = '?'x@array;
- or download this
@array = qw(one two three);
$p_str = join ",",'?'x@array;
- or download this
@array = qw(one two three);
$p_str = join ",","???";
- or download this
???