Click here to Skip to main content
15,913,610 members

Comments by Member 11372314 (Top 5 by date)

Member 11372314 12-Feb-15 7:48am View    
Thank you for responding!
Member 11372314 12-Feb-15 7:48am View    
I need to be able to format each field individually as the output file is build line by line.
Member 11372314 12-Feb-15 7:47am View    
Thank you for responding!
Member 11372314 12-Feb-15 7:37am View    
Based on the above code, would this code work?

oline = string.Format("{0}", w_line.Substring(0,20); //firstName
+ string.Format("{0}", w_line.Substring(10,30); //lastName
+ string.Format("{0}", w_line.Substring(50,10); //address

The output is a text file that gets passed loaded into LRS ANYQ (report/file distributer)
Member 11372314 12-Feb-15 7:19am View    
This looks like an ideal solution. I have questions regarding this solution. I am currently working a 'non ideal' solution due to time constraints. I receive the file as a tab deliminated text file converted to ASCII (mainframe LRS VPS to server based LRS ANYQ. I intend to explore this soluution as I think it is ideal.