my $html = 'this is the user text: «»'; my $userinput = 'Some text :)'; $html =~ s//$userinput/is; print $html, $/; __END__ this is the user text: «Some text :)»