Hi there, When I was processing dataset this morning, I faced a problem. Let's take a look at my data first: 30210027甲三郎30210397乙先天冰30210069丙小姐30210493丁阿旺 30210044物阿梅30210021己阿有30240052更有言30210346心一? ... Basic it's in the pattern of "8-digit number" + "Chinese name of a person", and it is stored in the text file. My problem is: I don't know how to divide this seemingly random variable into the way I want? As I said, I want to divide each row into "ID1" + "Name1" + "ID2" + "Name2" + "ID3" + "Name3" + "ID4" + "Name4" As a whole, I wish the data looked like ID1 Name1 ID2 Name2 ID3 Name3 ID4 Name4 30210027 甲三郎 30210397 乙先天冰 30210069 丙小姐 30210493 丁阿旺 30210044 物阿梅 30210021 己阿有 30240052 更有言 30210346 心一? ... I've tried three ways #1 Import It leads to a result that I wouldn't conclude it as a failure, but it's definitely not a success: #2 Infile Some variables are wrong because of the random length of the Chinese name, plus there's no delimiter between each variable. #3 Adding delimiter, such as ",", by my hand. For this method, I added a comma between each variable. It works actually. However, considering the total of around 10000 variables awaits me to process, It may not work that well as I thought... Therefore, I'm here to ask for your kindly help. Any suggestions would be helpful. Thanks in advance!
... View more