On 5/18/07, Terrence Brannon <[EMAIL PROTECTED]> wrote:
I need to get my result (a number) into result_s as a string for
output purpose. Help appreciated:

There's a variety of ways of doing this.  For example:
result_s=: ": result

Alternatively, you might use:

argx=: '3'
argy=: 2{::ARGV
result_s=: argx ACK&.". argy

But note that this simplicity assumes you trust your data
source (you're using unrestricted eval -- unfortunately, 0&".
does not have a useful inverse).

--
Raul
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to