Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Type convertion

Intel_C_Intel
Employee
292 Views
How to transform in DF98 an integer to a string variable (analogy itoa in C)?
0 Kudos
1 Reply
sabalan
New Contributor I
292 Views
Try this:

Character StringVar*x 
Integer IntegerVar

WRITE(StringVar,'(I)') IntegerVar


You can use READ to inverse this.

Regards,

Sabalan.
0 Kudos
Reply