Hi,
I'm fresher to LN. I want to be right a string into the file. But I can't do it.
I think is there any header file is needed to this operation, I have mentioned my script below.
Thanks
Pralash...
I'm fresher to LN. I want to be right a string into the file. But I can't do it.
I think is there any header file is needed to this operation, I have mentioned my script below.
Thanks
Pralash...
Code:
function void file.creation.for.string.to.text.domain.conversion(string tmp.string)
{
domain tcmcs.long ft
| #include <bic_text>
file.tmp = creat.tmp.file$(bse.tmp.dir$() ) |create temp file Aug 3
ft = seq.open(file.tmp,"w") |open file with write method
|retn = seq.puts(tmp.string,ft) |tmp.string is your input text
retn = seq.puts("senthil",ft) |tmp.string is your input text
seq.close(ft)
}