http://qs1969.pair.com?node_id=398837


in reply to Re: Manually adding delimiters instead of join()
in thread Manually adding delimiters instead of join()

Alternately, since you only need to break up the :: variable interpolation
$users{$username} = "$password\::$name\::$email\::$website\::$start";
or even (although this isn't any better than join-not that there is anything wrong with join)
$password.'::'.$name.'::'.$email.'::'.$website.'::'.$start

PJ
use strict; use warnings; use diagnostics;