anuragingle

Broken In
need help with vbscript code to read specific number of characters from a text file and save them to another file

For example : read all the characters from 10th character to the 20th character and write these characters to another text file

I know its simple but i cant seem to figure it out.

code needs to be in vbscript not vb6 or .net

Can anybody help?

Thanks
 

enjoy

Journeyman
Are you stuck at a certain issue or you want somebody to write it completely for you.

It should be pretty easy.
Read the file. Use Mid function ( mid(str, 10,20) )and save in other file.
 
Top Bottom