in reply to $var{'a',1,...}

$; has a ...
"default value of chr(28)" Default is "\034", the same as SUBSEP in awk.
Which is it? Or am I overlooking something obvious?

Replies are listed 'Best First'.
Re^2: $var{'a',1,...}
by thinker (Parson) on May 23, 2005 at 09:03 UTC

    You are overlooking something obvious :-)

    perl -wle '$c = chr(28); $d = "\034";print $c eq $d ? "true" : "false" +' true

    cheers

    thinker