1. just a little question (about Rfont)
- Posted by mb11363 <mb11363 at TVD.BE> Mar 21, 1999
- 492 views
Hi, it's just a little question : how to "transform" an integer into a sequence ? I explain : I want to use write() in Rfont to display an integer, but write() display only sequences. So I have to transform the integer, but I dunno how (and I don't want to use print() to display the int. ) Thanx in advance Gwen
2. Re: just a little question (about Rfont)
- Posted by Colin Taylor <cetaylor at COMPUSERVE.COM> Mar 21, 1999
- 471 views
Message text written by Gwen >it's just a little question : how to "transform" an integer into a sequence ?< You can use sprintf() to convert an integer (or any number) to a text sequence. For example, to print the integer 255 using rfont: write(sprintf("%d", 255)) Colin Taylor