對於我的生活,我不能連接兩個(/三相)字符串。這些都是一些代碼我曾嘗試:德爾福XE3 - 無法連接字符串
dir := 'C:\Users\' + Username + '\Downloads\done.txt'; //"Username" is the computer's current username.
//another example vvv
dir := 'C:\Users\' + Username;
dir := dir + '\Downloads\done.txt';
//last example vvv
dir := Concat('C:\Users\', Username, '\Downloads\done.txt');
所有的例子總是返回相同的結果:
C:\用戶\ -username-
從不:
C:\ Users \用戶-username- \下載\ done.txt
我在這裏做錯了什麼?
德爾福字符串連接工程。您提供的代碼不會提供您所說的輸出。提出完整的方案來重現行爲。 –