串接到後面是採用FOR去存入去跑
可是前面的話,該如何存呢?
已解決,暴力法往後拉,再存新的
string str = "123";
string str1 = "456";
str = str + str1 --> 123456
str = str1 + str --> 456123