in reply to Need help with s///

Your regex is fine, but you didn't escape the $$ initialy. This works for me.
use strict; my $a; $a = "\$\$NETOBJ.parameter"; $a =~ s/\$\$NETOBJ\.//; print $a;