Up |
tabtostr
Create a string from an array of ascii value.
Prototype :
fun [tab I] S
- tab I : any ascii array
Return : S the string.
See also
Example
typeof tab = tab I;;
fun ftab (char, index)=
if (char == 'z) then
set tab.index = 'e
else
0;;
fun main ()=
_showconsole;
set tab = strtotab "Hzllo World";
forTab @ftab tab;
_fooS tabtostr tab; // Hello World
0;;