Hi all, I am trying to extract a dataset to a file. Inside a dataset, the first column contains double bytes. The goal is to extract the first column with fixed length of 60 and second column with fixed length of 10. The problem is that after the extraction, the first field in the first and second row cannot be aligned to the length of 60. Only the rest of rows with pure English can achieve this. Sample code: data booking; input x :$60. y $ :10.; datalines; ルアドhello checked ルアドレス uncheck Anderson checked EmmaWatson checked BradJames checked proc print; run; data _null_; set booking; file '/plane_booking.txt' put @1 x $60. @61 y $10.; run; Result of the file: ルアドhello checked ルアドレス uncheck Anderson checked EmmaWatson checked BradJames checked Ideal result: ルアドhello checked ルアドレス uncheck Anderson checked EmmaWatson checked BradJames checked Kindly give advice , thank you very much!
... View more