$bookA = \"123\"; $crack = \"A\";
I want to do something similar to this:
echo $book$crack;
Such that the output is 123
Try the following:
echo ${book.$crack};
It works for me.