I have a counterA and a counterB. I want to define a command \PrintCounter, which gets either A or B as argument, and then prints the value of the corresponding counter.
I wrote the following code:
\newcommand{\PrintCounter}[1]{
\thecounter#1
}
which results in an error. I need a way to tell LaTeX to evaluate counter#1 before evaluating \the. Unfortunately, I couldn't make it work using \expandafter.