preloader-matrix

Alfasith

Job to create text and write in to it…

static voidTextIoTest(Args _args)
{
    TextIo Io = new TextIo(@”C:Temptest.txt”, ‘w’);
    ;
    Io.outFieldDelimiter();
    Io.outRecordDelimiter(‘rn’);
    Io.write(    strLfix(“Bharath Likes”,20), ‘|’, strRfix(“Bel Poori”,15), ‘|’, 117);
    Io.writeExp([strLfix(“abc”,20), ‘|’, strRfix(“xyz”,15), ‘|’, 117]);
    Io.write(); // To force CR NL

}

Leave a Reply

Your email address will not be published. Required fields are marked *