Re: How to make dynamic strings?
- To: mathgroup at smc.vnet.net
- Subject: [mg111921] Re: How to make dynamic strings?
- From: Themis Matsoukas <tmatsoukas at me.com>
- Date: Thu, 19 Aug 2010 07:20:25 -0400 (EDT)
If I understand you correctly, you want par3 to be a string that is dynamically updated with the value of par1. Then, the following would do the job: par1 = 200; par3 = Dynamic[ToString[par1]] Themis