Im trying to generate gstring from this code but not works
date="01" varzcx= "\${"+"date" +"}"; println varzcx
this print ${date}
I need print 01
please help me
Instead of this...
You probably want this...
date="01" varzcx= "${date}" println varzcx
Instead of this...
You probably want this...