in reply to how to evaluate a variable in a string?

My question is how can I make them evaluated ?

The problem is this line of code:

$c->{Anchor}{to}='$3 |$2| *$1*';
Use double quotes to get variable interpolation:
$c->{Anchor}{to} = "$3 |$2|*$1*";

My mistake. I didn't fully understand the question.

-sauoq
"My two cents aren't worth a dime.";